We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make generate-k8s-api fails in the dev VM due to missing GOPATH:
make generate-k8s-api
./generate-groups.sh: line 71: GOPATH: unbound variable Makefile:227: recipe for target 'generate-k8s-api' failed make: *** [generate-k8s-api] Error 1
While it would be possible to fix this by modifying the Makefile, it would be better to have GOROOT and GOPATH set in the base box image itself.
GOROOT
GOPATH
Add $GOPATH to PATH, so that running dep (when installed) succeeds without explicit path.
$GOPATH
PATH
dep
The text was updated successfully, but these errors were encountered:
No branches or pull requests
make generate-k8s-api
fails in the dev VM due to missing GOPATH:While it would be possible to fix this by modifying the Makefile, it would be better to have
GOROOT
andGOPATH
set in the base box image itself.Add
$GOPATH
toPATH
, so that runningdep
(when installed) succeeds without explicit path.The text was updated successfully, but these errors were encountered: