]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Quote SSHD_CONFOPTS in case it contains spaces.
authorDarren Tucker <dtucker@dtucker.net>
Wed, 17 Feb 2021 22:59:09 +0000 (09:59 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Wed, 17 Feb 2021 22:59:09 +0000 (09:59 +1100)
.github/run_test.sh

index c2173020234999b13ec1d570e0be1ee6c3f08972..f698996d405e00176a8c6fe965fe645b480815ef 100755 (executable)
@@ -14,7 +14,7 @@ else
     result=$?
 fi
 
-if [ ! -z ${SSHD_CONFOPTS} ]; then
+if [ ! -z "${SSHD_CONFOPTS}" ]; then
     echo "rerunning tests with TEST_SSH_SSHD_CONFOPTS='${SSHD_CONFOPTS}'"
     make t-exec TEST_SSH_SSHD_CONFOPTS="${SSHD_CONFOPTS}"
     result2=$?