From: Darren Tucker Date: Wed, 17 Feb 2021 22:59:09 +0000 (+1100) Subject: Quote SSHD_CONFOPTS in case it contains spaces. X-Git-Tag: V_8_5_P1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c8f41ad100601ec2fdcbccdfe92890c31f81bbe;p=thirdparty%2Fopenssh-portable.git Quote SSHD_CONFOPTS in case it contains spaces. --- diff --git a/.github/run_test.sh b/.github/run_test.sh index c21730202..f698996d4 100755 --- a/.github/run_test.sh +++ b/.github/run_test.sh @@ -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=$?