updating bumper

This commit is contained in:
David Vennik
2022-11-08 11:01:59 +01:00
parent b908a46ad7
commit 8fa99deee8
2 changed files with 5 additions and 5 deletions

View File

@@ -233,7 +233,7 @@ func runCmd(cmd ...string) (err error) {
var output []byte
output, err = c.CombinedOutput()
if err == nil && string(output) != "" {
fmt.Print(string(output))
errPrintln(string(output))
}
return
}

View File

@@ -10,11 +10,11 @@ var (
// GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/main"
// ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "8de4c9718d9ceb20bd4ea7c39e9e73fcf3d493cf"
ParentGitCommit = "d4b55e21c70002b49125cbe9c34be1037c779176"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-11-08T11:01:23+01:00"
BuildTime = "2022-11-08T11:01:59+01:00"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.81"
SemVer = "v0.0.82"
// PathBase is the path base returned from runtime caller.
PathBase = "/home/loki/src/github.com/Indra-Labs/indra/"
// Major is the major number from the tag.
@@ -22,7 +22,7 @@ var (
// Minor is the minor number from the tag.
Minor = 0
// Patch is the patch version number from the tag.
Patch = 81
Patch = 82
)
// Version returns a pretty printed version information string.