Refine build-go.sh and update 'version' output

This commit is contained in:
Tomofumi Hayashi
2022-07-07 01:35:43 +09:00
parent 3cda380ad1
commit 99dd6678d5
5 changed files with 59 additions and 50 deletions

View File

@@ -38,7 +38,7 @@ func main() {
flag.BoolVar(&versionOpt, "v", false, "Show application version")
flag.Parse()
if versionOpt == true {
fmt.Printf("%s\n", multus.PrintVersionString())
fmt.Printf("multus: %s\n", multus.PrintVersionString())
return
}