Files
nixpkgs/pkgs/by-name/fl/flottbot/version.patch
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

38 lines
780 B
Diff

diff --git a/version/version.go b/version/version.go
index 9ca8aba..d9bd968 100644
--- a/version/version.go
+++ b/version/version.go
@@ -4,9 +4,6 @@ package version
import (
"fmt"
- "runtime/debug"
-
- "github.com/Masterminds/semver/v3"
)
// Version supplies the semantic version.
@@ -14,20 +11,8 @@ var Version string
// String prints the build information for the bot.
func String() string {
- hash := "unknown"
-
- _, err := semver.NewVersion(Version)
- if err != nil {
- Version = "dev"
- }
-
- if info, ok := debug.ReadBuildInfo(); ok {
- for _, s := range info.Settings {
- if s.Key == "vcs.revision" {
- hash = s.Value
- }
- }
- }
+ Version = "@version@"
+ hash := "@vcsHash@"
return fmt.Sprintf("Version : %s\nGit Hash: %s\n", Version, hash)
}