File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
33fixuid || :
44
5- # Skip node_modules deletion and yarn install if SKIP_INSTALL is set to true
5+ # Skip node_modules deletion and yarn install if SKIP_YARN_INSTALL is set to true
66# This is disabled by default as clean install are often necessary
77# Change this in env file at your own risk with the benefit of speeding up container startup
88if [ " $SKIP_YARN_INSTALL " != " true" ]; then
99 echo " === STARTING NODE_MODULES DELETION AND YARN INSTALL ==="
10- echo " SKIP_YARN_INSTALL is not set to true "
10+ echo " SKIP_YARN_INSTALL is set to false or is not defined "
1111
1212 rm -rf node_modules pwa/node_modules example-app/node_modules
1313
@@ -27,7 +27,7 @@ if [ "$SKIP_YARN_INSTALL" != "true" ]; then
2727 fi
2828else
2929 echo " === SKIPPING NODE_MODULES DELETION AND YARN INSTALL ==="
30- echo " SKIP_INSTALL is set to true"
30+ echo " SKIP_YARN_INSTALL is set to true"
3131fi
3232
3333exec $@
You can’t perform that action at this time.
0 commit comments