Skip to content

Commit 7a1d0a9

Browse files
authored
v3.7 - fix syntax error
1 parent f2e4a79 commit 7a1d0a9

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.6
5+
## version: 3.7
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)