We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2518dd5 commit 6b1e5f5Copy full SHA for 6b1e5f5
1 file changed
Makefile
@@ -348,3 +348,13 @@ operator-lint: gowork ## Runs operator-lint
348
.PHONY: docs
349
docs: ## Create documentation under docs/build/html
350
docs/build-docs.sh
351
+
352
+BRANCH ?= 18.0-fr2
353
+.PHONY: force-bump
354
+force-bump: ## Force bump operator and lib-common dependencies
355
+ for dep in $$(cat go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|test-operator|^replace' | awk '{print $$1}'); do \
356
+ go get $$dep@$(BRANCH) ; \
357
+ done
358
+ for dep in $$(cat api/go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|test-operator|^replace' | awk '{print $$1}'); do \
359
+ cd ./api && go get $$dep@$(BRANCH) && cd .. ; \
360
0 commit comments