We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c143c81 commit b93a3d8Copy full SHA for b93a3d8
2 files changed
tasks/scripts/gateway-vm.sh
@@ -58,7 +58,9 @@ normalize_arch() {
58
}
59
60
normalize_bool() {
61
- case "${1,,}" in
+ local val
62
+ val="$(printf '%s' "$1" | tr '[:upper:]' '[:lower:]')"
63
+ case "${val}" in
64
1|true|yes|on) echo "true" ;;
65
0|false|no|off) echo "false" ;;
66
*)
tasks/scripts/package-snap.sh
@@ -59,7 +59,9 @@ infer_snap_arch() {
1 | true | yes | on) echo "1" ;;
0 | false | no | off) echo "0" ;;
67
0 commit comments