From 61af71fdd3df79478194b8cffee200dbdea2780a Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sat, 30 Sep 2017 10:15:21 -0700 Subject: [PATCH] mage: log plugin building --- mage.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mage.go b/mage.go index 5c0e41e..ee3cfa4 100644 --- a/mage.go +++ b/mage.go @@ -54,7 +54,8 @@ func goBuildPlugin(ctx context.Context, dir, pkgname, fname string) { return } - shouldWork(ctx, nil, dir, "go", "build", "-buildmode=plugin", "-o="+fname, pkgBase+pkgname) + shouldWork(ctx, nil, dir, "go", "build", "-v", "-buildmode=plugin", "-o="+fname, pkgBase+pkgname) + qod.Printlnf("built %s for %s", fname, runtime.GOOS) } func buildBins(goos string) {