You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| for choice in $${${param.VIASH_PAR}_CHOICES[@]}; do
672
+
| for choice in "$${${param.VIASH_PAR}_CHOICES[@]}"; do
674
673
| if [ "$$val" == "$$choice" ]; then
675
674
| found=1
676
675
| break
677
676
| fi
678
677
| done
679
678
| if [ $$found -eq 0 ]; then
680
-
| ViashError '${param.name}' specified value of \\'$${val}\\' is not in the list of allowed values. Use "--help" to get more information on the parameters.
679
+
| ViashError '${param.name}' specified value of \\'$$val\\' is not in the list of allowed values. Use "--help" to get more information on the parameters.
| for choice in $${${param.VIASH_PAR}_CHOICES[@]}; do
689
+
| for choice in "$${${param.VIASH_PAR}_CHOICES[@]}"; do
692
690
| if [ "$$${param.VIASH_PAR}" == "$$choice" ]; then
693
691
| found=1
694
692
| break
695
693
| fi
696
694
| done
697
-
| set -f
698
695
| if [ $$found -eq 0 ]; then
699
696
| ViashError '${param.name}' specified value of \\'$$${param.VIASH_PAR}\\' is not in the list of allowed values. Use "--help" to get more information on the parameters.
0 commit comments