user.js

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 2f4b93a18fe610435f7142c3a23baa7e247d9613
parent d50c772d7d28b0a49e19e5ded6dcb0c4e52717be
Author: bol0gna <75225753+bol0gna@users.noreply.github.com>
Date:   Mon, 24 Apr 2023 12:56:29 -0400

fix escape character, should close #1667 (#1668)


Diffstat:
Mupdater.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/updater.sh b/updater.sh @@ -2,7 +2,7 @@ ## arkenfox user.js updater for macOS and Linux -## version: 3.7 +## version: 3.8 ## 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,