Commit b8cf0567 authored by Vitaly Lipatov's avatar Vitaly Lipatov

rpmgs: new rpm fixes

parent d1d346a9
...@@ -528,10 +528,10 @@ update_predownloaded() ...@@ -528,10 +528,10 @@ update_predownloaded()
local COMMITMSG='' local COMMITMSG=''
local PRODUCTION='' local PRODUCTION=''
[ "$MODE" = "production" ] && PRODUCTION='--production' [ "$MODE" = "production" ] && PRODUCTION='--omit=dev'
info "Detected npm install hook, running ..." info "Detected npm install hook, running ..."
docmd npm install --verbose --no-optional --ignore-scripts $PRODUCTION || fatal docmd npm install $VERBOSE --omit=optional --ignore-scripts $PRODUCTION || fatal
COMMITMSG="update node_modules with npm install $PRODUCTION for $VERSION (see $SDNAME in .gear/rules)" COMMITMSG="update node_modules with npm install $PRODUCTION for $VERSION (see $SDNAME in .gear/rules)"
if [ -s $RGD/.gear/predownloaded-postinstall-hook ] ; then if [ -s $RGD/.gear/predownloaded-postinstall-hook ] ; then
...@@ -541,12 +541,15 @@ update_predownloaded() ...@@ -541,12 +541,15 @@ update_predownloaded()
# prune removes modules not listed in package.json # prune removes modules not listed in package.json
# a= npm prune $PRODUCTION # a= npm prune $PRODUCTION
docmd npm dedup # dedup restores removed modules!
#docmd npm dedup
info "Removing binaries ..." info "Removing binaries ..."
find vendor -name "*.a" -type f -delete -print if [ -d vendor ] ; then
find vendor -name "*.so" -type f -delete -print find vendor -name "*.a" -type f -delete -print
find vendor -name "*.dll" -type f -delete -print find vendor -name "*.so" -type f -delete -print
find vendor -name "*.dll" -type f -delete -print
fi
# drop all exclude node_modules # drop all exclude node_modules
# TODO: correct .* removing # TODO: correct .* removing
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment