From 4a576af855738b2c3a31eaaba478feeb7b316acb Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sat, 16 Apr 2016 22:27:34 +0200 Subject: [PATCH] Fix CI tests on darwin --- Vagrantfile | 1 - run_integration_tests.go | 1 - 2 files changed, 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index bac6e5a7c..19c73673b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -35,7 +35,6 @@ end def packages_darwin return <<-EOF ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" - brew install caskroom/cask/brew-cask brew cask install osxfuse EOF end diff --git a/run_integration_tests.go b/run_integration_tests.go index 519a6cd1f..1a1666d94 100644 --- a/run_integration_tests.go +++ b/run_integration_tests.go @@ -97,7 +97,6 @@ func (env *TravisEnvironment) Prepare() { if runtime.GOOS == "darwin" { // install the libraries necessary for fuse run("brew", "update") - run("brew", "install", "caskroom/cask/brew-cask") run("brew", "cask", "install", "osxfuse") }