From 4c36d20dc1350f1d3dc7b31ca63a6e111d53e82f Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 30 Dec 2021 20:48:50 -0300 Subject: [PATCH] Add break and return --- scripts/bootstrap.sh | 1 + scripts/linkFiles.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index e2b644e..b2fac73 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -65,6 +65,7 @@ getGitconfigData() { gitWorkPath=$(displayDialogBox --inputbox "Enter an absolute folder path where you would like to use the work account." 3>&1 1>&2 2>&3) while [[ ! -d $gitWorkPath ]]; do + [ $? -eq 1 ] || break gitWorkPath=$(displayDialogBox --inputbox "Path isn't valid. Please try again" 3>&1 1>&2 2>&3) done gitWorkName=$(displayDialogBox --inputbox "Enter a name." 3>&1 1>&2 2>&3) diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index e2bad8e..190c674 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -83,6 +83,7 @@ loopThroughFiles() { if [ -d "$DOTFILES_OTHER" ]; then filesOutput=$(find -H "$DOTFILES_OTHER" | sed -n 2~1p | awk '{ sub(/.*CocoRice\/dotfiles\/other\//, ""); print }') displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n$filesOutput" + [ $? -eq 1 ] || return fi for srcFile in $(find -H "$DOTFILES_OTHER"); do