From f58bf93507091e78c67395717e9e9b24d994ca73 Mon Sep 17 00:00:00 2001 From: Elaina Claus Date: Fri, 5 Sep 2025 15:45:33 -0400 Subject: [PATCH] don't exit if we are running as root just warn --- scripts/create-disk.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/create-disk.sh b/scripts/create-disk.sh index b4b42c6..570c416 100755 --- a/scripts/create-disk.sh +++ b/scripts/create-disk.sh @@ -17,8 +17,7 @@ set -euo pipefail # along with this program. If not, see . if [ $(id -u) = 0 ]; then - echo "Script should not be run as root, it could break something! Exiting!" >&2 - exit 1 + echo "Script should not be run as root, it could break something!" >&2 fi # paths to bootcode