From 808053cbcf36490948a7664090c56e7740b0b02a Mon Sep 17 00:00:00 2001 From: archshift Date: Tue, 3 Nov 2015 17:40:10 -0800 Subject: [PATCH] .travis-deps.sh: don't install pkgbuild on OS X pkgbuild is now provided by Travis itself, so homebrew throws an error upon trying to install it. --- .travis-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis-deps.sh b/.travis-deps.sh index 504edbcdf..4b907abb3 100755 --- a/.travis-deps.sh +++ b/.travis-deps.sh @@ -25,6 +25,6 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then elif [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update > /dev/null # silence the very verbose output - brew install qt5 glfw3 pkgconfig + brew install qt5 glfw3 gem install xcpretty fi