Skip to content

Commit

Permalink
version: include goos and goarch in version output
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Dec 20, 2024
1 parent 252a7bc commit 800331f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ func init() {
builtWith = fmt.Sprintf("built at %s with %s", BuildTime, runtime.Version())
}
mautrix.DefaultUserAgent = fmt.Sprintf("gomuks/%s %s", Version, mautrix.DefaultUserAgent)
Description = fmt.Sprintf("gomuks %s (%s)", Version, builtWith)
Description = fmt.Sprintf("gomuks %s on %s/%s (%s)", Version, runtime.GOOS, runtime.GOARCH, builtWith)
}

0 comments on commit 800331f

Please sign in to comment.