From 5c07477de478703c390bccab40a223029cc5324c Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Mon, 6 Oct 2014 08:17:33 +0200 Subject: [PATCH] Install verbosely --- build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.go b/build.go index 062b943f..899aeed3 100644 --- a/build.go +++ b/build.go @@ -168,7 +168,7 @@ func test(pkg string) { func install(pkg string) { os.Setenv("GOBIN", "./bin") setBuildEnv() - runPrint("go", "install", "-ldflags", ldflags(), pkg) + runPrint("go", "install", "-v", "-ldflags", ldflags(), pkg) } func build(pkg string, tags []string) {