From 7bc2a1a507b5c96fd5e7d26af198688ec03981e4 Mon Sep 17 00:00:00 2001 From: earthlng Date: Sat, 22 Apr 2023 11:49:36 +0000 Subject: [PATCH] Update prefsCleaner.sh --- prefsCleaner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prefsCleaner.sh b/prefsCleaner.sh index a23d2c7..9aa89f0 100755 --- a/prefsCleaner.sh +++ b/prefsCleaner.sh @@ -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 should not 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,