mirror of https://github.com/VinGarcia/ksql.git
Update Makefile update recipe to also push new tags for all adapters
parent
32470ddce4
commit
a269036a11
4
Makefile
4
Makefile
|
@ -32,7 +32,9 @@ go-mod-tidy:
|
|||
# Update adapters to use a new ksql tag
|
||||
version=
|
||||
update:
|
||||
find . -name go.mod -execdir go get github.com/vingarcia/ksql@$(version) \;
|
||||
find adapters -name go.mod -execdir go get github.com/vingarcia/ksql@$(version) \;
|
||||
for dir in $$(ls adapters); do git tag adapters/$$dir/$(version); done
|
||||
for dir in $$(ls adapters); do git push origin master adapters/$$dir/$(version); done
|
||||
|
||||
gen: mock
|
||||
mock: setup
|
||||
|
|
Loading…
Reference in New Issue