2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-10 15:20:55 +00:00
frappe_docker/build/frappe-nginx/build.sh

19 lines
376 B
Bash
Raw Normal View History

2020-06-27 18:14:13 +00:00
#!/bin/bash
function nodeCleanUp() {
rm -fr node_modules
yarn install --production=true
}
cd /home/frappe/frappe-bench/apps/frappe
yarn
yarn run production
if [[ "$GIT_BRANCH" =~ ^(version-12|version-11)$ ]]; then
nodeCleanUp
else
nodeCleanUp
# remove this when frappe framework moves this to dependencies from devDependencies
yarn add node-sass
2020-06-27 18:14:13 +00:00
fi