From 48fe8de185fa59009db7c2e5680a1cc742b59f78 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 17 Jan 2022 22:11:08 -0300 Subject: [PATCH] Create gitWorkPath if it doesn't exist --- scripts/bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 2a5d0ff..8bd1e8b 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -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