Removed a v from the sprintf for version output.

This commit is contained in:
sloumdrone 2019-10-14 20:34:20 -07:00
parent 3e6c61dcdc
commit 6609cca70e
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ func main() {
getVersion := flag.Bool("v", false, "See version number") getVersion := flag.Bool("v", false, "See version number")
flag.Parse() flag.Parse()
if *getVersion { if *getVersion {
fmt.Printf("Bombadillo v%s\n", version) fmt.Printf("Bombadillo %s\n", version)
os.Exit(0) os.Exit(0)
} }
args := flag.Args() args := flag.Args()