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 6e201ec commit a0d250eCopy full SHA for a0d250e
Makefile
@@ -22,10 +22,7 @@ export GO111MODULE = on
22
23
# Setup project-local paths and build settings
24
SHELL=/bin/bash
25
-TOOLS_DIR=$(PWD)/tools
26
-TOOLS_BIN_DIR=$(TOOLS_DIR)/bin
27
-SCRIPTS_DIR=$(TOOLS_DIR)/scripts
28
-export PATH := $(BUILD_DIR):$(TOOLS_BIN_DIR):$(SCRIPTS_DIR):$(PATH)
+export PATH := $(BUILD_DIR):$(PATH)
29
30
# bingo manages consistent tooling versions for things like kind, kustomize, etc.
31
include .bingo/Variables.mk
@@ -82,4 +79,4 @@ release: $(GORELEASER)
82
79
83
80
.PHONY: clean
84
81
clean:
85
- rm -rf $(TOOLS_BIN_DIR) $(BUILD_DIR)
+ rm -rf $(BUILD_DIR)
tools/scripts/fetch
0 commit comments