We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35c4a71 commit 9502b85Copy full SHA for 9502b85
.travis.yml
@@ -10,7 +10,8 @@ os:
10
11
before_install:
12
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
13
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install mongodb; fi
+ # "brew install" can succeed but return 1 if it has "caveats".
14
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install mongodb || true; fi
15
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew services start mongodb; fi
16
17
before_script:
0 commit comments