From 5c46813cc48317eaed8312b944d83bf31e411a23 Mon Sep 17 00:00:00 2001 From: gustawdaniel Date: Tue, 3 Jul 2018 13:11:19 +0200 Subject: [PATCH] Added verbosity do npm install --production I propose to add --verbose flag because if building hangs out on this step this flag allow to easy debug. --- scripts/build-meteor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-meteor.sh b/scripts/build-meteor.sh index 5f35df4..6f6f80a 100755 --- a/scripts/build-meteor.sh +++ b/scripts/build-meteor.sh @@ -29,7 +29,7 @@ meteor build --directory $APP_BUNDLE_DIR --server-only # run npm install in bundle printf "\n[-] Running npm install in the server bundle...\n\n" cd $APP_BUNDLE_DIR/bundle/programs/server/ -meteor npm install --production +meteor npm install --production --verbose # put the entrypoint script in WORKDIR mv $BUILD_SCRIPTS_DIR/entrypoint.sh $APP_BUNDLE_DIR/bundle/entrypoint.sh