feat: hyperbole build script

This commit is contained in:
tobyxdd 2023-06-04 12:37:17 -07:00
parent 393e0d00f2
commit cefe5d9f76
3 changed files with 454 additions and 4 deletions

View file

@ -23,9 +23,11 @@ var (
// These values will be injected by the build system
appVersion = "Unknown"
appDate = "Unknown"
appType = "Unknown"
appCommit = "Unknown"
appVersionLong = fmt.Sprintf("Version:\t%s\nBuildDate:\t%s\nCommitHash:\t%s", appVersion, appDate, appCommit)
appVersionLong = fmt.Sprintf("Version:\t%s\nBuildDate:\t%s\nBuildType:\t%s\nCommitHash:\t%s",
appVersion, appDate, appType, appCommit)
)
var logger *zap.Logger