From f04c420d93c2f6f0ff8205715d169c9fe132d133 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Mon, 21 Feb 2022 17:12:41 -0600 Subject: [PATCH] nobug: tweak log messages --- cmd/hc-install/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/hc-install/main.go b/cmd/hc-install/main.go index 04e446c..c9f97d9 100644 --- a/cmd/hc-install/main.go +++ b/cmd/hc-install/main.go @@ -58,7 +58,7 @@ func run(ui cli.Ui, args []string) int { } func install(ui cli.Ui, project, tag string) error { - msg := fmt.Sprintf("will install %s@%s", project, tag) + msg := fmt.Sprintf("hc-install: will install %s@%s", project, tag) ui.Info(msg) v := version.Must(version.NewVersion(tag)) @@ -114,7 +114,7 @@ func copyProgram(ui cli.Ui, programPath string) error { destination = filepath.Join(gopath, "bin", program) } - msg := fmt.Sprintf("copy executable to %s", destination) + msg := fmt.Sprintf("hc-install: copy executable to %s", destination) ui.Info(msg) return clone(programPath, destination)