Add break and return
This commit is contained in:
parent
874ef46f5b
commit
4c36d20dc1
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue