From 931408037c17233a636dabd5eaa476de1691b4b6 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Tue, 8 Dec 2015 09:14:52 +0100 Subject: [PATCH] Build should use -i (keep built pkg:s) and -v (verbose) --- build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.go b/build.go index cc736044..22cdbc3f 100644 --- a/build.go +++ b/build.go @@ -219,7 +219,7 @@ func build(pkg string, tags []string) { } rmr(binary) - args := []string{"build", "-ldflags", ldflags()} + args := []string{"build", "-i", "-v", "-ldflags", ldflags()} if len(tags) > 0 { args = append(args, "-tags", strings.Join(tags, ",")) }