Add break and return

This commit is contained in:
Santiago Lo Coco 2021-12-30 20:48:50 -03:00
parent 874ef46f5b
commit 4c36d20dc1
2 changed files with 2 additions and 0 deletions

View File

@ -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)

View File

@ -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