mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-23 19:26:33 +00:00
chore(scripts): Silence stdout for npm install (#1567)
Change-Type: patch
This commit is contained in:
parent
20ca03496f
commit
5f5a4b61b0
@ -99,9 +99,9 @@ function run_install() {
|
||||
|
||||
# When changing between target architectures, rebuild all dependencies,
|
||||
# since compiled add-ons will not work otherwise.
|
||||
npm rebuild --silent
|
||||
npm rebuild --silent > /dev/null
|
||||
|
||||
npm install --silent $INSTALL_OPTS
|
||||
npm install --silent $INSTALL_OPTS > /dev/null
|
||||
|
||||
if [ "$ARGV_PRODUCTION" == "true" ]; then
|
||||
|
||||
|
@ -69,7 +69,7 @@ else
|
||||
|
||||
npm config set spin=false
|
||||
npm config set progress=false
|
||||
npm install -g --silent uglify-es@3.0.3
|
||||
npm install -g --silent uglify-es@3.0.3 > /dev/null
|
||||
pip install -r requirements.txt
|
||||
|
||||
make info
|
||||
|
Loading…
x
Reference in New Issue
Block a user