File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export IMAGE_VERSION = v1.39.2
9
9
export SIMPLE_VERSION = $(shell (test "$(shell git describe --tags) " = "$(shell git describe --tags --abbrev=0) " && echo $(shell git describe --tags) ) || echo $(shell git describe --tags --abbrev=0) +git)
10
10
export GIT_VERSION = $(shell git describe --dirty --tags --always)
11
11
export GIT_COMMIT = $(shell git rev-parse HEAD)
12
- export K8S_VERSION = 1.31.0
12
+ export K8S_VERSION = 1.32.1
13
13
14
14
# Build settings
15
15
export TOOLS_DIR = tools/bin
@@ -71,6 +71,13 @@ clean: ## Cleanup build artifacts and tool binaries.
71
71
72
72
# #@ Build
73
73
74
+ # Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
75
+ ifeq (,$(shell go env GOBIN) )
76
+ GOBIN =$(shell go env GOPATH) /bin
77
+ else
78
+ GOBIN =$(shell go env GOBIN)
79
+ endif
80
+
74
81
.PHONY : install
75
82
install : # # Install operator-sdk and helm-operator.
76
83
@if [ -z " $( GOBIN) " ]; then \
You can’t perform that action at this time.
0 commit comments