Create gitWorkPath if it doesn't exist

This commit is contained in:
Santiago Lo Coco 2022-01-17 22:11:08 -03:00
parent f20e1de74f
commit 48fe8de185
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ getGitconfigData() {
fi
gitWorkPath=$(displayDialogBox --inputbox "Enter an absolute folder path where you would like to use the work account." VALUES 3>&1 1>&2 2>&3)
mkdir -p "$gitWorkPath"
while [[ ! -d $gitWorkPath ]]; do
gitWorkPath=$(displayDialogBox --inputbox "Path isn't valid. Please try again" VALUES 3>&1 1>&2 2>&3)
done