mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

* iOS works * Works on Android * Take in commit number in iOS also. Get rid of image upload for Android. It's just a waste of bandwidth * Tweak to fix on Travis
9 lines
191 B
Bash
Executable File
9 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
if [ -n "$TRAVIS" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
|
|
gem install coveralls-lcov
|
|
gem install bundler
|
|
npm install -g firebase-tools@">=3.6.1 <3.7.0"
|
|
fi
|