Updating to latest proc
This commit is contained in:
@@ -158,7 +158,7 @@ func main() {
|
||||
startArgs++
|
||||
}
|
||||
tag := true
|
||||
if branch != "main" {
|
||||
if branch != "main" && branch != "master" {
|
||||
tag = false
|
||||
} else {
|
||||
switch {
|
||||
|
||||
2
go.mod
2
go.mod
@@ -3,7 +3,7 @@ module github.com/Indra-Labs/indra
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
github.com/cybriq/proc v0.20.3
|
||||
github.com/cybriq/proc v0.20.5
|
||||
github.com/cybriq/qu v0.1.2
|
||||
github.com/davecgh/go-spew v1.1.1
|
||||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0
|
||||
|
||||
4
go.sum
4
go.sum
@@ -6,8 +6,8 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPd
|
||||
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
|
||||
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
|
||||
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
|
||||
github.com/cybriq/proc v0.20.3 h1:gwtqIixY9ja83VuQ8B7bi/XnWmt4f5i2GDsy1teHQdw=
|
||||
github.com/cybriq/proc v0.20.3/go.mod h1:b6JDUUwfe8soxWzvAziWA/msrb73O2v6gZEQL+wHYx8=
|
||||
github.com/cybriq/proc v0.20.5 h1:ND4GVyIrWeOSInUnQ7cnCaAJVypcImPun3MB5EkgWOA=
|
||||
github.com/cybriq/proc v0.20.5/go.mod h1:b6JDUUwfe8soxWzvAziWA/msrb73O2v6gZEQL+wHYx8=
|
||||
github.com/cybriq/qu v0.1.2 h1:4R65BhG22C3mY4fXYZpfJYklw9N1AVkCwTwrby4andY=
|
||||
github.com/cybriq/qu v0.1.2/go.mod h1:1Ph7YWr5HVJTBSRTQ8cFcaFE+DK56r+cSpbNWD+CQS8=
|
||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
|
||||
@@ -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 = "6ceae0f9d988a50d845410ed4ae47fc1122db5f3"
|
||||
ParentGitCommit = "89f4a51a85574c75aa0fa27b7b2d13381e9ee6b2"
|
||||
// BuildTime stores the time when the current binary was built.
|
||||
BuildTime = "2022-12-23T18:27:47Z"
|
||||
BuildTime = "2022-12-23T18:31:03Z"
|
||||
// SemVer lists the (latest) git tag on the build.
|
||||
SemVer = "v0.0.220"
|
||||
SemVer = "v0.0.221"
|
||||
// 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 = 220
|
||||
Patch = 221
|
||||
)
|
||||
|
||||
// Version returns a pretty printed version information string.
|
||||
|
||||
Reference in New Issue
Block a user