Skip to content

Commit 8ec7fe0

Browse files
committed
Fix travis-ci issue on macOS
1 parent 2ab336a commit 8ec7fe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

developer-scripts/travis/install.osx.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ echo "Performing Travis-CI installation phase on macOS..."
2424
# Update and install via Homebrew on macOS
2525
brew update > /dev/null
2626

27-
brew install gcc
28-
brew link --overwrite gcc
27+
brew install gcc || true
28+
brew link --overwrite gcc || true
2929

3030
for pkg in ${OSX_PACKAGES}; do
3131
brew ls --versions "${pkg}" >/dev/null || brew install "${pkg}" || brew link --overwrite "${pkg}"

0 commit comments

Comments
 (0)