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.
This commit is contained in:
Ashlen 2023-05-04 18:32:23 -06:00
parent 1a0bbae1ac
commit 6be940b648

View file

@ -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}"