Skip to content

Commit

Permalink
Merge pull request #26 from nathan-fiscaletti/dev
Browse files Browse the repository at this point in the history
Updated version command output format
  • Loading branch information
nathan-fiscaletti authored Aug 3, 2024
2 parents 2c65bcb + 214ddfb commit 07514f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/application/commands/general/cmd.version.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func VersionCommand() cli.Command {
return fmt.Errorf("failed to read build info: %v", err)
}

fmt.Println(cli.MainName(), "version", info.Main.Version, runtime.GOARCH)
fmt.Println(cli.MainName(), "version", info.Main.Version, fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH))

return nil
},
Expand Down

0 comments on commit 07514f8

Please sign in to comment.