Fix gitWorkPath bug
This commit is contained in:
parent
d8de17c657
commit
de61cb1c8d
|
@ -72,11 +72,13 @@ getGitconfigData() {
|
||||||
msg="\nEnter an absolute folder path where you would like to use the work account."
|
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)
|
gitWorkPath=$(displayDialogBox --inputbox "$msg" VALUES 3>&1 1>&2 2>&3)
|
||||||
checkCancel "You must enter a path." && return
|
checkCancel "You must enter a path." && return
|
||||||
|
gitWorkPath=$(echo "$gitWorkPath" | envsubst)
|
||||||
mkdir -p "$gitWorkPath"
|
mkdir -p "$gitWorkPath"
|
||||||
while [[ ! -d $gitWorkPath ]]; do
|
while [[ ! -d "$gitWorkPath" ]]; do
|
||||||
msg="\nPath isn't valid. Please try again."
|
msg="\nPath isn't valid. Please try again."
|
||||||
gitWorkPath=$(displayDialogBox --inputbox "$msg" VALUES 3>&1 1>&2 2>&3)
|
gitWorkPath=$(displayDialogBox --inputbox "$msg" VALUES 3>&1 1>&2 2>&3)
|
||||||
checkCancel "You must enter a path." && return
|
checkCancel "You must enter a path." && return
|
||||||
|
gitWorkPath=$(echo "$gitWorkPath" | envsubst)
|
||||||
mkdir -p "$gitWorkPath"
|
mkdir -p "$gitWorkPath"
|
||||||
done
|
done
|
||||||
gitWorkName=$(displayDialogBox --inputbox "\nEnter a name." VALUES 3>&1 1>&2 2>&3)
|
gitWorkName=$(displayDialogBox --inputbox "\nEnter a name." VALUES 3>&1 1>&2 2>&3)
|
||||||
|
|
Loading…
Reference in New Issue