Skip to content

Commit

Permalink
update printed version string
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanisham committed May 27, 2024
1 parent 6133c25 commit b2e775e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/meta/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ const (


var (
VerCopy = fmt.Sprintf("zvm %s %s/%s", VERSION, runtime.GOOS, runtime.GOARCH)
VerCopy = fmt.Sprintf("%s %s/%s", VERSION, runtime.GOOS, runtime.GOARCH)
)

2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var zvmApp = &opts.App{
Usage: "Zig Version Manager",
Description: "zvm lets you easily install, upgrade, and switch between different versions of Zig.",
HelpName: "zvm",
Version: meta.VERSION,
Version: meta.VerCopy,
Copyright: "Copyright © 2022 Tristan Isham",
Suggest: true,
Before: func(ctx *opts.Context) error {
Expand Down

0 comments on commit b2e775e

Please sign in to comment.