Fix gitWorkPath bug

This commit is contained in:
Santiago Lo Coco 2022-02-08 13:30:19 -03:00
parent d8de17c657
commit de61cb1c8d
1 changed files with 3 additions and 1 deletions

View File

@ -72,11 +72,13 @@ getGitconfigData() {
msg="\nEnter an absolute folder path where you would like to use the work account."
gitWorkPath=$(displayDialogBox --inputbox "$msg" VALUES 3>&1 1>&2 2>&3)
checkCancel "You must enter a path." && return
gitWorkPath=$(echo "$gitWorkPath" | envsubst)
mkdir -p "$gitWorkPath"
while [[ ! -d $gitWorkPath ]]; do
while [[ ! -d "$gitWorkPath" ]]; do
msg="\nPath isn't valid. Please try again."
gitWorkPath=$(displayDialogBox --inputbox "$msg" VALUES 3>&1 1>&2 2>&3)
checkCancel "You must enter a path." && return
gitWorkPath=$(echo "$gitWorkPath" | envsubst)
mkdir -p "$gitWorkPath"
done
gitWorkName=$(displayDialogBox --inputbox "\nEnter a name." VALUES 3>&1 1>&2 2>&3)