Skip to content

Commit e82294a

Browse files
committed
fix(makefile): update Shikai version to v1.0.1 and change repository source
1 parent a55faf5 commit e82294a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ CONTROLLER_GEN ?= $(LOCALBIN)/controller-gen
246246
ENVTEST ?= $(LOCALBIN)/setup-envtest
247247
GOLANGCI_LINT = $(LOCALBIN)/golangci-lint
248248
SHIKAI ?= $(LOCALBIN)/shikai
249-
SHIKAI_RELEASE ?= $(LOCALBIN)/release
249+
SHIKAI_RELEASE ?= $(LOCALBIN)/shikai
250250

251251
## Tool Versions
252252
KUSTOMIZE_VERSION ?= v5.6.0
@@ -256,7 +256,7 @@ ENVTEST_VERSION ?= $(shell go list -m -f "{{ .Version }}" sigs.k8s.io/controller
256256
#ENVTEST_K8S_VERSION is the version of Kubernetes to use for setting up ENVTEST binaries (i.e. 1.31)
257257
ENVTEST_K8S_VERSION ?= $(shell go list -m -f "{{ .Version }}" k8s.io/api | awk -F'[v.]' '{printf "1.%d", $$3}')
258258
GOLANGCI_LINT_VERSION ?= v2.1.0
259-
SHIKAI_VERSION ?= v1.0.0
259+
SHIKAI_VERSION ?= v1.0.1
260260

261261
.PHONY: kustomize
262262
kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary.
@@ -289,7 +289,7 @@ $(GOLANGCI_LINT): $(LOCALBIN)
289289
.PHONY: shikai
290290
shikai: $(SHIKAI) ## Download shikai locally if necessary.
291291
$(SHIKAI): $(LOCALBIN)
292-
$(call go-install-tool,$(SHIKAI_RELEASE),github.com/shikai/release,$(SHIKAI_VERSION))
292+
$(call go-install-tool,$(SHIKAI_RELEASE),github.com/nicolaiort/shikai,$(SHIKAI_VERSION))
293293
ln -sf $(SHIKAI_RELEASE)-$(SHIKAI_VERSION) $(SHIKAI)
294294

295295
# go-install-tool will 'go install' any package with custom target and name of binary, if it doesn't exist

0 commit comments

Comments
 (0)