btcd container based on scratch.

This commit is contained in:
Colin Lyons
2023-01-15 14:23:35 +00:00
parent c1028d4233
commit d9d488cabe

View File

@@ -8,13 +8,13 @@ var (
// URL is the git URL for the repository.
URL = "github.com/indra-labs/indra"
// GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/ind-bootstrap"
GitRef = "refs/heads/main"
// ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "92b18fe19e3fb8d3916190676d26630eb164a53d"
ParentGitCommit = "2273fb78b4b64e5070b70053873330dfc4755399"
// BuildTime stores the time when the current binary was built.
BuildTime = "2023-01-15T14:20:06Z"
BuildTime = "2023-01-15T14:23:35Z"
// SemVer lists the (latest) git tag on the release.
SemVer = "v0.1.7"
SemVer = "v0.1.8"
// PathBase is the path base returned from runtime caller.
PathBase = "/home/lyo/Git/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 = 1
// Patch is the patch version number from the tag.
Patch = 7
Patch = 8
)
// Version returns a pretty printed version information string.