Skip to content

Commit

Permalink
Fix HAS_SHELLCHECK and HAS_SETUP_ENVTEST in Makefile (#1884)
Browse files Browse the repository at this point in the history
  • Loading branch information
tenzen-y authored Jun 4, 2022
1 parent 91974f1 commit b9314c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
HAS_LINT := $(shell command -v golangci-lint;)
HAS_SHELLCHECK := $(shell command shellcheck --version)
HAS_SETUP_ENVTEST := $(shell command setup-envtest list)
HAS_LINT := $(shell command -v golangci-lint)
HAS_SHELLCHECK := $(shell command -v shellcheck)
HAS_SETUP_ENVTEST := $(shell command -v setup-envtest)

COMMIT := v1beta1-$(shell git rev-parse --short=7 HEAD)
KATIB_REGISTRY := docker.io/kubeflowkatib
Expand Down

0 comments on commit b9314c6

Please sign in to comment.