From 2976df2dc6bc1b9e3c195b040be7a41c5e0174ba Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sat, 19 Dec 2015 17:38:58 +0100 Subject: [PATCH] Call `brew update` before installing --- run_integration_tests.go | 1 + 1 file changed, 1 insertion(+) diff --git a/run_integration_tests.go b/run_integration_tests.go index 6b33423e3..0ae59ec6f 100644 --- a/run_integration_tests.go +++ b/run_integration_tests.go @@ -30,6 +30,7 @@ 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") }