From ec6549748b6ec76cc7c13b8a5b117a3556996cc1 Mon Sep 17 00:00:00 2001 From: fREW Schmidt Date: Thu, 14 May 2020 03:53:38 -0700 Subject: Remove old sh-ism (#920) The x prefix thing hasn't been needed for quite some time, especially if you are declaring that you want to use bash. --- Examples/test_script_mode.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/test_script_mode.sh b/Examples/test_script_mode.sh index 95c8b49b..d2773ae3 100755 --- a/Examples/test_script_mode.sh +++ b/Examples/test_script_mode.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -if [ x"$@" = x"quit" ] +if [ "$*" = "quit" ] then exit 0 fi -- cgit v1.2.3