From 9a08f571559cc9563b0495c70e8afdd158edbf8b Mon Sep 17 00:00:00 2001 From: Ashish Bhate Date: Sun, 6 Dec 2020 19:35:34 +0530 Subject: [PATCH] don't hide installation errors (#4993) --- scripts/postinstall.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/postinstall.sh b/scripts/postinstall.sh index 5554f8d92..8133d57a6 100755 --- a/scripts/postinstall.sh +++ b/scripts/postinstall.sh @@ -5,9 +5,9 @@ if [[ "$OSTYPE" == "darwin"* ]]; then gem install bundler --version 2.1.4 fi echo "Installing Gems" - npm run ios-gems &> /dev/null + npm run ios-gems echo "Getting Cocoapods dependencies" - npm run pod-install &> /dev/null + npm run pod-install fi ASSETS=$(node scripts/generate-assets.js) @@ -16,4 +16,4 @@ if [ -z "$ASSETS" ]; then exit 1 else echo "Generating app assets" -fi \ No newline at end of file +fi