We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af06e80 commit 8ac68c9Copy full SHA for 8ac68c9
Makefile
@@ -52,9 +52,9 @@ endif
52
FIND_EXCLUSIONS= \
53
-not \( \( -path '*/.git/*' -o -path './build/*' -o -path './vendor/*' -o -path './.coderv2/*' -o -path '*/node_modules/*' -o -path './site/out/*' -o -path './coderd/apidoc/*' \) -prune \)
54
# Source files used for make targets, evaluated on use.
55
-GO_SRC_FILES = $(shell find . $(FIND_EXCLUSIONS) -type f -name '*.go')
+GO_SRC_FILES := $(shell find . $(FIND_EXCLUSIONS) -type f -name '*.go')
56
# All the shell files in the repo, excluding ignored files.
57
-SHELL_SRC_FILES = $(shell find . $(FIND_EXCLUSIONS) -type f -name '*.sh')
+SHELL_SRC_FILES := $(shell find . $(FIND_EXCLUSIONS) -type f -name '*.sh')
58
59
# All ${OS}_${ARCH} combos we build for. Windows binaries have the .exe suffix.
60
OS_ARCHES := \
0 commit comments