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
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ func (env *TravisEnvironment) RunTests() error {
}
// 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
}