Browse Source

fix the unquoted variables in the case pattern matching

pull/7451/head
chrislu 4 weeks ago
parent
commit
b1bec1de99
  1. 4
      docker/entrypoint_e2e.sh

4
docker/entrypoint_e2e.sh

@ -19,10 +19,10 @@ isArgPassed() {
passedArg="$1"
shift
case $passedArg in
$arg)
"$arg")
return 0
;;
$argWithEqualSign*)
"$argWithEqualSign"*)
return 0
;;
esac

Loading…
Cancel
Save