Refactored bin script printing

Necessary to have consistent use of `printf` especially with formatting strings and new lines.

Milestone: patch
This commit is contained in:
Brooke Kuhlmann
2024-02-25 08:40:17 -07:00
parent 75d2c93e89
commit 76b193dede
15 changed files with 70 additions and 70 deletions

View File

@@ -13,5 +13,5 @@ if [[ -x "$SCRIPT_PATH" ]]; then
install_ruby
"$SCRIPT_PATH"
else
printf "WARNING: Ruby gems install script does not exist or is not executable.\n"
printf "%s\n" "WARNING: Ruby gems install script does not exist or is not executable."
fi