Skip to content

Commit

Permalink
update liboidcagent dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmann committed Apr 15, 2019
1 parent 396f839 commit bf411c7
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 10 deletions.
72 changes: 67 additions & 5 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ import:
version: 1.1.0
- package: gopkg.in/alecthomas/kingpin.v2
- package: github.com/zpatrick/go-config
- package: github.com/zachmann/liboidcagent-go/liboidcagent
- package: github.com/indigo-dc/liboidcagent-go/liboidcagent
4 changes: 2 additions & 2 deletions orchent.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import (
"strings"

"github.com/dghubble/sling"
"github.com/zachmann/liboidcagent-go/liboidcagent"
"github.com/indigo-dc/liboidcagent-go/liboidcagent"
"github.com/zpatrick/go-config"
"gopkg.in/alecthomas/kingpin.v2"
)

const OrchentVersion string = "1.2.3"
const OrchentVersion string = "1.2.4"

var (
app = kingpin.New("orchent", "The orchestrator client. \n \nPlease either store your access token in 'ORCHENT_TOKEN' or set the account to use with oidc-agent in the 'ORCHENT_AGENT_ACCOUNT' and the socket of the oidc-agent in the 'OIDC_SOCK' environment variable: \n export ORCHENT_TOKEN=<your access token> \n OR \n export OIDC_SOCK=<path to the oidc-agent socket> (usually this is already exported) \n export ORCHENT_AGENT_ACCOUNT=<account to use> \nIf you need to specify the file containing the trusted root CAs use the 'ORCHENT_CAFILE' environment variable: \n export ORCHENT_CAFILE=<path to file containing trusted CAs>\n \n").Version(OrchentVersion)
Expand Down
2 changes: 1 addition & 1 deletion utils/build_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ echo -n " go-config ... "
go get github.com/zpatrick/go-config
echo "done"
echo -n " liboidcagent ... "
go get github.com/zachmann/liboidcagent-go/liboidcagent
go get github.com/indigo-dc/liboidcagent-go/liboidcagent
echo "done"
echo -n "building orchent ... "
CGO_ENABLED=0 GOOS=linux go build -a -v -o $ORCHENT ${GOPATH}/orchent.go
Expand Down
2 changes: 1 addition & 1 deletion utils/compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ echo -n " go-config ... "
go get github.com/zpatrick/go-config
echo "done"
echo -n " liboidcagent ... "
go get github.com/zachmann/liboidcagent-go/liboidcagent
go get github.com/indigo-dc/liboidcagent-go/liboidcagent
echo "done"
echo -n "building orchent ... "
go build -o orchent ${GOPATH}/orchent.go
Expand Down
3 changes: 3 additions & 0 deletions utils/compile_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ echo "done"
echo -n " go-config ... "
go get github.com/zpatrick/go-config
echo "done"
echo -n " liboidcagent ... "
go get github.com/indigo-dc/liboidcagent-go/liboidcagent
echo "done"
echo -n "building orchent ... "
go build -o orchent ${GOPATH}/orchent.go
echo "done"

0 comments on commit bf411c7

Please sign in to comment.