2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-17 08:12:57 +00:00

Fix osxfuse on Travis/darwin

This commit is contained in:
Alexander Neumann 2016-08-19 19:04:02 +02:00
parent 2a2fb74ba8
commit bd9f23f1d2

View File

@ -160,11 +160,14 @@ func (env *TravisEnvironment) Prepare() error {
if runtime.GOOS == "darwin" { if runtime.GOOS == "darwin" {
// install the libraries necessary for fuse // install the libraries necessary for fuse
if err := run("brew", "update"); err != nil { for _, cmd := range [][]string{
return err {"brew", "update"},
} {"brew", "tap", "caskroom/cask"},
if err := run("brew", "cask", "install", "osxfuse"); err != nil { {"brew", "cask", "install", "osxfuse"},
return err } {
if err := run(cmd[0], cmd[1:]...); err != nil {
return err
}
} }
} }