You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The help will print out all targets with their descriptions organized bellow their categories. The categories are represented by `##@` and the target descriptions by `##`.
45
47
# The awk commands is responsible to read the entire set of makefiles included in this invocation, looking for lines of the file as xyz: ## something, and then pretty-format the target and help. Then, if there's a line with ##@ something, that gets pretty-printed as a category.
@@ -96,7 +98,8 @@ lint-fix: $(GOLANGCI_LINT) ## Lint the codebase and run auto-fixers if supported
96
98
.PHONY: modules
97
99
modules: ## Runs go mod to ensure modules are up to date.
98
100
go mod tidy
99
-
cd$(TOOLS_DIR); go mod tidy
101
+
cd$(TOOLS_DIR); go mod tidy;cd$(ROOT_DIR)
102
+
cd$(ENVTEST_DIR); go mod tidy
100
103
101
104
.PHONY: generate
102
105
generate: $(CONTROLLER_GEN)## Runs controller-gen for internal types for config file
0 commit comments