mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
9 lines
269 B
Makefile
9 lines
269 B
Makefile
OUT=../_out/repos/library
|
|
TMP := $(shell mktemp -d)
|
|
|
|
repo:
|
|
cd .. && ../hack/package_chart.sh library $(OUT) $(TMP)
|
|
|
|
fix-chartnames:
|
|
find . -maxdepth 2 -name Chart.yaml | awk -F/ '{print $$2}' | while read i; do sed -i "s/^name: .*/name: $$i/" "$$i/Chart.yaml"; done
|