diff --git a/install_scripts/setup_frappe.sh b/install_scripts/setup_frappe.sh index 0a3ffae1..bc2082d4 100644 --- a/install_scripts/setup_frappe.sh +++ b/install_scripts/setup_frappe.sh @@ -164,7 +164,7 @@ add_ius_repo() { } install_bench() { - sudo su $FRAPPE_USER -c "cd /home/$FRAPPE_USER && git clone --branch develop https://github.com/frappe/bench" + sudo su $FRAPPE_USER -c "cd /home/$FRAPPE_USER && git clone --branch develop https://github.com/frappe/bench bench-repo" if hash pip-2.7; then PIP="pip-2.7" elif hash pip2.7; then @@ -177,7 +177,7 @@ install_bench() { echo PIP not installed exit 1 fi - sudo $PIP install /home/$FRAPPE_USER/bench + sudo $PIP install /home/$FRAPPE_USER/bench-repo } get_distro