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 58312fa commit 8cbbc19Copy full SHA for 8cbbc19
1 file changed
Makefile
@@ -148,13 +148,14 @@ vet: gowork ## Run go vet against code.
148
go vet ./...
149
go vet ./apis/...
150
151
+BRANCH=main
152
.PHONY: force-bump
153
force-bump: ## Force bump after tagging
154
for dep in $$(cat go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|openstack-operator|^replace' | awk '{print $$1}'); do \
- go get $$dep@main ; \
155
+ go get $$dep@$(BRANCH) ; \
156
done
157
for dep in $$(cat apis/go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|openstack-operator|^replace' | awk '{print $$1}'); do \
- cd ./apis && go get $$dep@main && cd .. ; \
158
+ cd ./apis && go get $$dep@$(BRANCH) && cd .. ; \
159
160
161
.PHONY: tidy
0 commit comments