From 0ec53956e8fd334cd047b2631ea05d8f43b467a4 Mon Sep 17 00:00:00 2001 From: Ovidiu Mircescu Date: Fri, 23 Jul 2021 11:03:04 +0200 Subject: [PATCH] Fix condition on runRemoteSSL.sh. --- bin/appliskel/runRemoteSSL.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/appliskel/runRemoteSSL.sh b/bin/appliskel/runRemoteSSL.sh index 374fae90b..f7c7557a8 100755 --- a/bin/appliskel/runRemoteSSL.sh +++ b/bin/appliskel/runRemoteSSL.sh @@ -46,7 +46,7 @@ export APPLI=$("${APPLI_HOME}/getAppliPath.py") # Sourcing files with parameters works with bash, not with dash. This is why # we must use bash for this script. -if "$1" == "--noenvd" +if [ "$1" == "--noenvd" ] then shift else -- 2.39.2