force 2 letter country code to be lower case

This commit is contained in:
Matthew Saunders Brown 2024-07-26 14:18:17 -07:00
parent 4e3ed1a41b
commit a0665cb18d

View File

@ -2,7 +2,7 @@
# Zone (2 letter country code) should be first arg # Zone (2 letter country code) should be first arg
if [ -n "$1" ]; then if [ -n "$1" ]; then
zone=$1 zone=${1,,}
else else
echo "zone not set" echo "zone not set"
exit 1 exit 1