Skip to content
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.

Commit

Permalink
nobug: tweak log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
shoenig committed Feb 21, 2022
1 parent 95e2b39 commit f04c420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/hc-install/main.go
Expand Up @@ -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))
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit f04c420

Please sign in to comment.