From 2ca02b1f04b8d4989fc4bfe60f8e30a3b758f1f7 Mon Sep 17 00:00:00 2001
From: rusty-snake <41237666+rusty-snake@users.noreply.github.com>
Date: Sat, 22 Apr 2023 12:05:42 +0000
Subject: [PATCH] Fix updater.sh

---
 updater.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/updater.sh b/updater.sh
index 0f544d0..7258a66 100755
--- a/updater.sh
+++ b/updater.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 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,