2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-19 17:22:22 +00:00

Travis: Run build.go with -mod=vendor

This commit is contained in:
Alexander Neumann 2018-08-30 22:43:12 +02:00
parent 4734056583
commit b4beaf807b

View File

@ -331,7 +331,7 @@ func (env *TravisEnvironment) RunTests() error {
} }
// run the build script // run the build script
if err := run("go", "run", "build.go"); err != nil { if err := run("go", "run", "-mod=vendor", "build.go"); err != nil {
return err return err
} }