Skip to content

Commit 2f4b93a

Browse files
authored
fix escape character, should close #1667 (#1668)
1 parent d50c772 commit 2f4b93a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

updater.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
## arkenfox user.js updater for macOS and Linux
44

5-
## version: 3.7
5+
## version: 3.8
66
## Author: Pat Johnson (@overdodactyl)
77
## Additional contributors: @earthlng, @ema-pe, @claustromaniac, @infinitewarp
88

99
## DON'T GO HIGHER THAN VERSION x.9 !! ( because of ASCII comparison in update_updater() )
1010

1111
# Check if running as root and if any files have the owner/group as root/wheel.
1212
if [ "${EUID:-"$(id -u)"}" -eq 0 ]; then
13-
printf 'You shouldn\'t run this with elevated privileges (such as with doas/sudo).\n'
13+
printf "You shouldn\'t run this with elevated privileges (such as with doas/sudo).\n"
1414
exit 1
1515
elif [ -n "$(find ./ -user 0 -o -group 0)" ]; then
1616
printf 'It looks like this script was previously run with elevated privileges,

0 commit comments

Comments
 (0)