I'm using the tool for the first time. After cloning the repo into $GOPATH/src/dd2tf and resolving issues with not having dep installed and running dep ensure
> brew install dep && dep ensure
I move on to the second step of generating & building, at which point I see the following response:
> go generate && go build
dashboards.go:1: running "go-bindata": exec: "go-bindata": executable file not found in $PATH
My relevant environment variables are:
export DATADOG_APP_KEY="[my_app_key]"
export DATADOG_API_KEY="[my_api_key]"
export GOPATH="${HOME?}/go"
export GOBIN="/usr/local/bin/go"
export PATH=$HOME/bin:/usr/local/bin:$GOPATH:$GOBIN:$PATH
I'm not sure where to proceed from here.
I'm using the tool for the first time. After cloning the repo into
$GOPATH/src/dd2tfand resolving issues with not havingdepinstalled and runningdep ensureI move on to the second step of generating & building, at which point I see the following response:
My relevant environment variables are:
I'm not sure where to proceed from here.