Quote SSHD_CONFOPTS in case it contains spaces.

This commit is contained in:
Darren Tucker 2021-02-18 09:59:09 +11:00
parent 4653116c1f
commit 5c8f41ad10
1 changed files with 1 additions and 1 deletions

2
.github/run_test.sh vendored
View File

@ -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=$?