mirror of
https://github.com/frappe/bench.git
synced 2024-11-11 15:51:03 +00:00
Fix typo in variable name
Shell variables are case-sensitive.
This commit is contained in:
parent
2e246e0cd0
commit
0491f05244
@ -243,7 +243,7 @@ get_password() {
|
||||
read -p "Re enter $1 password to set:" -s TMP_PASS2
|
||||
echo
|
||||
if [ $TMP_PASS1 == $TMP_PASS2 ]; then
|
||||
export $2=$TMp_PASS1
|
||||
export $2=$TMP_PASS1
|
||||
else
|
||||
echo Passwords do not match
|
||||
get_password $1 $2
|
||||
|
Loading…
Reference in New Issue
Block a user