mage: log plugin building

This commit is contained in:
Cadey Ratio 2017-09-30 10:15:21 -07:00
parent 2074d01b9e
commit 61af71fdd3
No known key found for this signature in database
GPG Key ID: D607EE27C2E7F89A
1 changed files with 2 additions and 1 deletions

View File

@ -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) {