File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -360,6 +360,14 @@ run-with-webhook: manifests generate fmt vet ## Run a controller from your host.
360360
361361CRD_SCHEMA_CHECKER_VERSION ?= release-4.16
362362BRANCH ?= main
363+ .PHONY : force-bump
364+ force-bump : # # Force bump operator and lib-common dependencies
365+ for dep in $$ (cat go.mod | grep openstack-k8s-operators | grep -vE -- ' indirect|ironic-operator|^replace' | awk ' {print $$1}' ); do \
366+ go get $$ dep@$(BRANCH ) ; \
367+ done
368+ for dep in $$ (cat api/go.mod | grep openstack-k8s-operators | grep -vE -- ' indirect|ironic-operator|^replace' | awk ' {print $$1}' ); do \
369+ cd ./api && go get $$ dep@$(BRANCH ) && cd .. ; \
370+ done
363371
364372PHONY : crd-schema-check
365373crd-schema-check : manifests
You can’t perform that action at this time.
0 commit comments