Need the -f since some stuff under eg2/node_modules/.cache
ends up as 0444 for some reason, meaning that 'rm -r' doesn't
remove those files and complains about it.
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Bill Erickson <berickxx@gmail.com>
npm install # fetch build dependencies
ng build --prod
# npm cache is big and unnecessary in the final build. remove it.
- rm -r node_modules
+ rm -rf node_modules
cd ../../../../ # release dir
else
echo "Skipping browser client build"