projects
/
working
/
Evergreen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cdb03e7
)
LP#177546: tweak how make_release prunes eg2/node_modules
user/gmcharlt/lp177546_ang6_signoff
author
Galen Charlton
<gmc@equinoxinitiative.org>
Thu, 6 Sep 2018 21:03:58 +0000
(17:03 -0400)
committer
Galen Charlton
<gmc@equinoxinitiative.org>
Thu, 6 Sep 2018 21:03:58 +0000
(17:03 -0400)
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>
build/tools/make_release
patch
|
blob
|
history
diff --git
a/build/tools/make_release
b/build/tools/make_release
index
050f95b
..
9ebc432
100755
(executable)
--- a/
build/tools/make_release
+++ b/
build/tools/make_release
@@
-348,7
+348,7
@@
if [ "$BUILD_BROWSER_CLIENT" == "YES" ]; then
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 -r
f
node_modules
cd ../../../../ # release dir
else
echo "Skipping browser client build"