From 686673e1fd012d32c20baa1b36531ae760f72766 Mon Sep 17 00:00:00 2001 From: Rusty Bird Date: Fri, 31 Jan 2020 16:34:04 +0000 Subject: [PATCH] misc/qubes-run-gnome-terminal: slightly restrict pattern --- misc/qubes-run-gnome-terminal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/qubes-run-gnome-terminal b/misc/qubes-run-gnome-terminal index bed6905..d9fd4d0 100755 --- a/misc/qubes-run-gnome-terminal +++ b/misc/qubes-run-gnome-terminal @@ -6,6 +6,6 @@ # (we can't just run it and check exit code, because if it works, it will # return the exit code of the child process) case "$(gnome-terminal --help-terminal-options)" in - *--wait*) exec gnome-terminal --wait "$@" ;; - *) exec gnome-terminal "$@" ;; + *--wait\ *) exec gnome-terminal --wait "$@" ;; + *) exec gnome-terminal "$@" ;; esac