fix: do not install frappe during app install

This commit is contained in:
Revant Nandgaonkar 2021-04-20 07:32:24 +05:30
parent 12d9760658
commit ffe5bbca91

View file

@ -13,4 +13,10 @@ cd ./apps
[ "${APP_BRANCH}" ] && BRANCH="-b ${APP_BRANCH}"
git clone --depth 1 -o upstream ${APP_REPO} ${BRANCH} ${APP_NAME}
pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/${APP_NAME}
# Do not install frappe
sed -i '/frappe/d' ${APP_NAME}/requirements.txt
pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/${APP_NAME}
cd ${APP_NAME} && git checkout .