Browse Source

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.
Rémi Verschelde 9 years ago
parent
commit
1bdda9a922
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

+ 1 - 1
.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