From 2df7ed6c9be62470b071648bc7eb0c2d5b8a84dc Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Wed, 19 Aug 2015 20:16:58 +0200 Subject: [PATCH] fix `brew cask` on darwin --- run_integration_tests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_integration_tests.go b/run_integration_tests.go index ac8ac6442..4b3aa889b 100644 --- a/run_integration_tests.go +++ b/run_integration_tests.go @@ -30,7 +30,7 @@ func (env *TravisEnvironment) Prepare() { if runtime.GOOS == "darwin" { // install the libraries necessary for fuse run("brew", "install", "caskroom/cask/brew-cask") - run("brewcask", "install", "osxfuse") + run("brew", "cask", "install", "osxfuse") } // only test cross compilation on linux with Travis