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
Execution make install
make install
Compile the executable binary.
Error: GOBIN is not set make: *** [install] Error 1
Operator type:
Kubernetes cluster type:
go version go1.23.4 darwin/arm64
Remove code:
@if [ -z "$(GOBIN)" ]; then \ echo "Error: GOBIN is not set"; \ exit 1; \ fi
Check GOBIN is not invalid. This is empty by default. go installl installs the program in path $GOPATH/bin by default.
GOBIN
go installl
$GOPATH/bin
#6627 I think the author of this issue did not add $GOPATH/bin to the $PATH, leading him to believe that it was not installed.
$PATH
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
What did you do?
Execution
make install
What did you expect to see?
Compile the executable binary.
What did you see instead? Under which circumstances?
Environment
Operator type:
Kubernetes cluster type:
go version go1.23.4 darwin/arm64
Possible Solution
Remove code:
Check
GOBIN
is not invalid. This is empty by default.go installl
installs the program in path$GOPATH/bin
by default.#6627 I think the author of this issue did not add
$GOPATH/bin
to the$PATH
, leading him to believe that it was not installed.Additional context
The text was updated successfully, but these errors were encountered: