1
0
Fork 0

v3.7 - fix syntax error

This commit is contained in:
earthlng 2023-04-23 09:13:13 +00:00 committed by GitHub
parent f2e4a79ca0
commit 7a1d0a92af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
## arkenfox user.js updater for macOS and Linux
## version: 3.6
## version: 3.7
## Author: Pat Johnson (@overdodactyl)
## Additional contributors: @earthlng, @ema-pe, @claustromaniac, @infinitewarp
@ -10,7 +10,7 @@
# Check if running as root and if any files have the owner/group as root/wheel.
if [ "${EUID:-"$(id -u)"}" -eq 0 ]; then
printf 'You shouldn't run this with elevated privileges (such as with doas/sudo).\n'
printf 'You shouldn\'t run this with elevated privileges (such as with doas/sudo).\n'
exit 1
elif [ -n "$(find ./ -user 0 -o -group 0)" ]; then
printf 'It looks like this script was previously run with elevated privileges,