mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-28 02:18:36 +00:00
7 lines
213 B
Makefile
7 lines
213 B
Makefile
VERSION := 0.2.0
|
|
|
|
gen: fix-chartnames
|
|
|
|
fix-chartnames:
|
|
find . -name Chart.yaml -maxdepth 2 | awk -F/ '{print $$2}' | while read i; do printf "name: cozy-%s\nversion: $(VERSION)\n" "$$i" > "$$i/Chart.yaml"; done
|