From 88879f1cac99237bd5acd9426c0c4ada93753e5b Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 19 Jul 2023 11:08:28 +0100 Subject: [PATCH] Fix sudo message for #11 --- uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uninstall.sh b/uninstall.sh index d5e1b5f..e013945 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -7,7 +7,7 @@ PYTHON="/usr/bin/python3" user_check() { if [ $(id -u) -eq 0 ]; then - printf "Script should not be run as root. Try './install.sh'\n" + printf "Script should not be run as root. Try './uninstall.sh'\n" exit 1 fi }