fix `brew cask` on darwin

This commit is contained in:
Alexander Neumann 2015-08-19 20:16:58 +02:00
parent f0c8b11793
commit 2df7ed6c9b
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ func (env *TravisEnvironment) Prepare() {
if runtime.GOOS == "darwin" { if runtime.GOOS == "darwin" {
// install the libraries necessary for fuse // install the libraries necessary for fuse
run("brew", "install", "caskroom/cask/brew-cask") run("brew", "install", "caskroom/cask/brew-cask")
run("brewcask", "install", "osxfuse") run("brew", "cask", "install", "osxfuse")
} }
// only test cross compilation on linux with Travis // only test cross compilation on linux with Travis