don't hide installation errors (#4993)

This commit is contained in:
Ashish Bhate 2020-12-06 19:35:34 +05:30 committed by GitHub
parent 6ebfe6d1c7
commit 9a08f57155
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
fi