From 39bc74511ff994cb06f0c09687db3c2c440c63e4 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Thu, 30 May 2024 18:56:22 +0300 Subject: [PATCH] fixup! --- kasmvnc/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kasmvnc/run.sh b/kasmvnc/run.sh index eb8f830..0dcd894 100644 --- a/kasmvnc/run.sh +++ b/kasmvnc/run.sh @@ -3,7 +3,7 @@ # check if there is a WAIT_FOR_SCRIPT env variable and if so, wait for it to be available # Wait for the startup script to complete -if [ -n "$WAIT_FOR_SCRIPT" ]; then +if [ -n "${WAIT_FOR_SCRIPT}" ]; then # This assumes that the script will create a file called /tmp/.coder-${WAIT_FOR_SCRIPT}.done while [ ! -f /tmp/.coder-${WAIT_FOR_SCRIPT}.done ]; do sleep 1