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 2a73940 commit ecb3d23Copy full SHA for ecb3d23
Makefile
@@ -210,3 +210,10 @@ update-chart-dep: dep-update ## Updates the dependency version in the Chart.yaml
210
.PHONY: prepare-release
211
prepare-release: ## Prepares for a new release of the helm chart. Optionally specify CHART_VERSION and APP_VERSION.
212
ci_scripts/prepare-release.sh CREATE_BRANCH=${CREATE_BRANCH} CHART_VERSION=${CHART_VERSION} APP_VERSION=${APP_VERSION}
213
+
214
+.PHONY: tidy-all
215
+tidy-all:
216
+ @for dir in $$(find . -type f -name "go.mod" -exec dirname {} \; | sort | egrep '^./'); do \
217
+ echo "Running go mod tidy in $$dir"; \
218
+ (cd "$$dir" && rm -f go.sum && go mod tidy); \
219
+ done
0 commit comments