build: Don't use go build -i (#5367)

This commit is contained in:
Jörg Thalheim 2018-12-11 12:37:47 +00:00 committed by Jakob Borg
parent a09079ed25
commit bdcffe703b
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ func build(target target, tags []string) {
rmr(target.BinaryName())
args := []string{"build", "-i", "-v"}
args := []string{"build", "-v"}
args = appendParameters(args, tags, target)
os.Setenv("GOOS", goos)