Commit d8addb3e authored by Joseph Durel's avatar Joseph Durel

Change `echo` → `printf` for consistency

parent 9e4434e5
......@@ -3265,7 +3265,7 @@ uppercase() {
if ((bash_version >= 4)); then
printf "%s" "${1^}"
else
echo "$1"
printf "%s" "$1"
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