We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc82394 commit 38b3eaaCopy full SHA for 38b3eaa
1 file changed
Makefile
@@ -1,7 +1,11 @@
1
.PHONY: build clean lint test test-all build-test-runner docker-build docker-build-simple-email docker-build-send-email-link docker-push docker-push-simple-email docker-push-send-email-link
2
3
REGISTRY := ghcr.io/constructive-io/constructive-functions
4
-KIND_BIN ?= /opt/homebrew/bin/kind
+# Detect kind binary (search PATH, fallback to Homebrew)
5
+KIND_BIN := $(shell which kind)
6
+ifeq ($(KIND_BIN),)
7
+ KIND_BIN := /opt/homebrew/bin/kind
8
+endif
9
10
SUBDIRS := functions/hello-world functions/simple-email functions/send-email-link functions/runtime-script
11
0 commit comments