Skip to content
Snippets Groups Projects
Verified Commit 82e77d4a authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: remove versions output

parent 5ba9c8e9
No related branches found
Tags 0.5.6
No related merge requests found
...@@ -5,5 +5,5 @@ ...@@ -5,5 +5,5 @@
supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
compileForSystems = ["linux/arm64" "linux/amd64" "darwin/amd64" "windows/amd64"]; compileForSystems = ["linux/arm64" "linux/amd64" "darwin/amd64" "windows/amd64"];
modulePath = "gitlab.schukai.com/oss/bob"; modulePath = "gitlab.schukai.com/oss/bob";
version = "0.5.5"; ## do not change this line; it will be updated automatically version = "0.5.6"; ## do not change this line; it will be updated automatically
} }
package release package release
import (
"fmt"
)
var ( var (
version = "-/-" version = "-/-"
commit = "-/-" commit = "-/-"
...@@ -32,8 +28,6 @@ var release ReleaseStruct ...@@ -32,8 +28,6 @@ var release ReleaseStruct
func init() { func init() {
fmt.Println("Version: " + version)
release = ReleaseStruct{ release = ReleaseStruct{
Version: version, Version: version,
BuildDate: buildDate, BuildDate: buildDate,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment