From b662ec3afedf8540140924ea1cd360fac1920a52 Mon Sep 17 00:00:00 2001 From: rootzoll Date: Tue, 25 May 2021 18:15:00 -0500 Subject: [PATCH] debug --- home.admin/setup.scripts/finalDialogControl.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/home.admin/setup.scripts/finalDialogControl.sh b/home.admin/setup.scripts/finalDialogControl.sh index 6c2e8dc0d..57cad03a2 100755 --- a/home.admin/setup.scripts/finalDialogControl.sh +++ b/home.admin/setup.scripts/finalDialogControl.sh @@ -23,6 +23,9 @@ if [ "${setupPhase}" == "setup" ]; then done fi +echo "test(${setupPhase})" +sleep 2 + ############################################ # SETUP DONE CONFIRMATION (Konfetti Moment) @@ -31,21 +34,22 @@ if [ "${setupPhase}" == "setup" ]; clear echo "Hooray :) Everything is Setup!" echo "PRESS ENTER" - read key2 + read key # when coming from migration from other node elif [ "${setupPhase}" == "migration" ]; then clear echo "Hooray :) Your Migration to RaspiBlitz is Done!" echo "PRESS ENTER" - read key2 + read key # just in case then from another phase else clear echo "Missing Final Done Dialog for: ${setupPhase}" echo "PRESS ENTER" - read key2 + read key fi +echo "test" sleep 2 \ No newline at end of file