2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-22 20:19:01 +00:00

Merge pull request #70 from mgedmin/patch-1

Fix typo in variable name
This commit is contained in:
Pratik Vyas 2014-11-14 21:11:34 +05:30
commit 5933032e03

View File

@ -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