Updating proc

This commit is contained in:
David Vennik
2022-12-30 17:18:10 +00:00
parent 449a263734
commit 0ce7ca2db7
2 changed files with 7 additions and 6 deletions

View File

@@ -3,7 +3,6 @@ module github.com/Indra-Labs/indra/pkg/proc
go 1.19 go 1.19
require ( require (
github.com/cybriq/proc v0.20.10
github.com/davecgh/go-spew v1.1.1 github.com/davecgh/go-spew v1.1.1
github.com/gookit/color v1.5.2 github.com/gookit/color v1.5.2
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
@@ -16,3 +15,5 @@ require (
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44 // indirect golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44 // indirect
) )
replace github.com/cybriq/proc => ./

View File

@@ -8,13 +8,13 @@ var (
// URL is the git URL for the repository. // URL is the git URL for the repository.
URL = "github.com/Indra-Labs/indra" URL = "github.com/Indra-Labs/indra"
// GitRef is the gitref, as in refs/heads/branchname. // GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/protocol" GitRef = "refs/heads/main"
// ParentGitCommit is the commit hash of the parent HEAD. // ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "072f42c0f222facb65f6d9478f9682c65789bf37" ParentGitCommit = "1480ad99a31d57e87ca5109500900797c0e8dfa3"
// BuildTime stores the time when the current binary was built. // BuildTime stores the time when the current binary was built.
BuildTime = "2022-12-30T12:28:43Z" BuildTime = "2022-12-30T17:18:10Z"
// SemVer lists the (latest) git tag on the release. // SemVer lists the (latest) git tag on the release.
SemVer = "v0.1.0" SemVer = "v0.1.1"
// PathBase is the path base returned from runtime caller. // PathBase is the path base returned from runtime caller.
PathBase = "/home/loki/src/github.com/Indra-Labs/indra/" PathBase = "/home/loki/src/github.com/Indra-Labs/indra/"
// Major is the major number from the tag. // Major is the major number from the tag.
@@ -22,7 +22,7 @@ var (
// Minor is the minor number from the tag. // Minor is the minor number from the tag.
Minor = 1 Minor = 1
// Patch is the patch version number from the tag. // Patch is the patch version number from the tag.
Patch = 0 Patch = 1
) )
// Version returns a pretty printed version information string. // Version returns a pretty printed version information string.