mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-24 03:36:36 +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,
|
# When changing between target architectures, rebuild all dependencies,
|
||||||
# since compiled add-ons will not work otherwise.
|
# 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
|
if [ "$ARGV_PRODUCTION" == "true" ]; then
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ else
|
|||||||
|
|
||||||
npm config set spin=false
|
npm config set spin=false
|
||||||
npm config set progress=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
|
pip install -r requirements.txt
|
||||||
|
|
||||||
make info
|
make info
|
||||||
|
Loading…
x
Reference in New Issue
Block a user