diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-05-13 11:28:29 +0200 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-05-13 11:28:29 +0200 |
commit | 1bdda9a92255d7c333b2ee621179d178b355e11a (patch) | |
tree | 58bc82f7c80cbc4453b440bfe00fdee8e914f0e4 /.travis.yml | |
parent | dfb9ba877ec1591ef4d6ad3c8df56eaa43dc1bad (diff) | |
download | redot-engine-1bdda9a92255d7c333b2ee621179d178b355e11a.tar.gz |
Travis: Filter out another string, still noisy
That should leave only the `extracting:` lines of the verbose unzip,
should be enough to keep Travis awake.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 83c4b0557e..c5f9cf48b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,7 +70,7 @@ before_script: - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update; brew install scons; fi - if [ "$TRAVIS_OS_NAME" = "osx" ] && [ "$GODOT_TARGET" = "android" ]; then brew update; brew install -v android-sdk; - brew install -v android-ndk | grep -v inflating; + brew install -v android-ndk | grep -v "inflating:" | grep -v "creating:"; export ANDROID_HOME=/usr/local/opt/android-sdk; export ANDROID_NDK_ROOT=/usr/local/opt/android-ndk; fi |