Fix CI tests on darwin

This commit is contained in:
Alexander Neumann 2016-04-16 22:27:34 +02:00
parent 75dd9e0fee
commit 4a576af855
2 changed files with 0 additions and 2 deletions

1
Vagrantfile vendored
View File

@ -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

View File

@ -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")
}