From 6be940b648b710d464f10204bc49b31c0f632dee Mon Sep 17 00:00:00 2001 From: Ashlen Date: Thu, 4 May 2023 18:32:23 -0600 Subject: [PATCH] updater.sh: minor nitpicks Accidentally deleted a comma and added a newline. I would like to keep the formatting the same until someone indicates that I should do otherwise. --- updater.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/updater.sh b/updater.sh index 6066939..0aef5b1 100755 --- a/updater.sh +++ b/updater.sh @@ -149,7 +149,7 @@ open_file() { # expects one argument: file_path elif [ "$(uname -s | cut -c -5)" == "Linux" ]; then xdg-open "$1" else - err 'Error: Sorry opening files is not supported for your OS.' + err 'Error: Sorry, opening files is not supported for your OS.' fi } @@ -258,7 +258,6 @@ add_override() { if [ -f "$input" ]; then echo "" >> user.js cat "$input" >> user.js - printf '%s' 'Status: ' printf_color "${GREEN}" 'Override file appended:' echo " ${input}"