From de61cb1c8d04066eb46a239db490469c2e32be81 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 8 Feb 2022 13:30:19 -0300 Subject: [PATCH] Fix gitWorkPath bug --- scripts/bootstrap.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 151da6c..6ef704d 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -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)