From b6eb3ccde263b1fe264bcefc1ef48c55f391367e Mon Sep 17 00:00:00 2001 From: chabad360 Date: Fri, 6 Mar 2020 06:29:12 +0000 Subject: [PATCH] bug fix in install_apps.sh --- build/common/worker/install_app.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/common/worker/install_app.sh b/build/common/worker/install_app.sh index e3b9b629..ac71cc6a 100755 --- a/build/common/worker/install_app.sh +++ b/build/common/worker/install_app.sh @@ -8,10 +8,10 @@ cd /home/frappe/frappe-bench/ . env/bin/activate -cd apps +cd ./apps [ "${APP_BRANCH}" ] && \ BRANCH="-b ${APP_BRANCH}" git clone --depth 1 -o upstream ${APP_REPO} ${BRANCH} -pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/APP_NAME \ No newline at end of file +pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/${APP_NAME} \ No newline at end of file