File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ CURL_RETRIES=3
40
40
41
41
# Directories
42
42
TOOLS_DIR := $(ROOT ) /hack/tools
43
+ CHART_UPDATE_DIR := $(ROOT ) /hack/chart-update
43
44
TOOLS_BIN_DIR := $(TOOLS_DIR ) /bin
44
45
JUNIT_REPORT_DIR := $(TOOLS_DIR ) /_out
45
46
BIN_DIR := bin
@@ -261,7 +262,7 @@ verify:
261
262
262
263
.PHONY : verify-modules
263
264
verify-modules : modules
264
- @if ! (git diff --quiet HEAD -- go.sum go.mod $( TOOLS_DIR) /go.mod $( TOOLS_DIR) /go.sum); then \
265
+ @if ! (git diff --quiet HEAD -- go.sum go.mod $( TOOLS_DIR) /go.mod $( TOOLS_DIR) /go.sum $( CHART_UPDATE_DIR ) /go.mod $( CHART_UPDATE_DIR ) /go.sum ); then \
265
266
git diff; \
266
267
echo " go module files are out of date" ; exit 1; \
267
268
fi
@@ -304,6 +305,7 @@ generate-manifests: $(CONTROLLER_GEN) ## Generate manifests for the operator e.g
304
305
modules : # # Runs go mod to ensure modules are up to date.
305
306
go mod tidy
306
307
cd $(TOOLS_DIR ) ; go mod tidy
308
+ cd $(CHART_UPDATE_DIR ) ; go mod tidy
307
309
308
310
# # --------------------------------------
309
311
# # Docker
You can’t perform that action at this time.
0 commit comments