Commit 9e4434e5 authored by Joseph Durel's avatar Joseph Durel

Add missing double-quotes in `uppercase()` fix

parent 80d7cef7
...@@ -3265,7 +3265,7 @@ uppercase() { ...@@ -3265,7 +3265,7 @@ uppercase() {
if ((bash_version >= 4)); then if ((bash_version >= 4)); then
printf "%s" "${1^}" printf "%s" "${1^}"
else else
echo $1 echo "$1"
fi fi
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment