From 2ce987fc54ce2bbe55484e466f4691be78fce3d8 Mon Sep 17 00:00:00 2001 From: ahoemann Date: Sat, 26 Apr 2025 11:05:08 +0200 Subject: [PATCH] Update debian/setup-debian.sh --- debian/setup-debian.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/setup-debian.sh b/debian/setup-debian.sh index e2c63a0..0027a52 100644 --- a/debian/setup-debian.sh +++ b/debian/setup-debian.sh @@ -92,7 +92,7 @@ main () { } if [ $1 == "-i" ]; then - $INTERACTION_MODE="-i" + $INTERACTION_MODE="1" elif [ -z $1 ]; then $1 else @@ -101,7 +101,7 @@ fi # Check if running in interactive mode interactive () { - if [ $INTERACTION_MODE -eq "-i" ];then + if [ $INTERACTION_MODE -eq "1" ];then echo "INFO: ctrl+c to stop the script" read -p "Press any key to start the current step..." fi