From b1bec1de99c746ffd520d83bdf47d3d6cdf5202a Mon Sep 17 00:00:00 2001 From: chrislu Date: Fri, 7 Nov 2025 23:58:38 -0800 Subject: [PATCH] fix the unquoted variables in the case pattern matching --- docker/entrypoint_e2e.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/entrypoint_e2e.sh b/docker/entrypoint_e2e.sh index abf873a8e..9716bf37e 100755 --- a/docker/entrypoint_e2e.sh +++ b/docker/entrypoint_e2e.sh @@ -19,10 +19,10 @@ isArgPassed() { passedArg="$1" shift case $passedArg in - $arg) + "$arg") return 0 ;; - $argWithEqualSign*) + "$argWithEqualSign"*) return 0 ;; esac