fix list
All checks were successful
renovate / renovate (push) Successful in 1m44s

This commit is contained in:
2025-12-01 23:18:56 -06:00
parent 4960f15ead
commit 5dd015875f
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ jobs:
echo "$CHANGED_CHARTS"
echo "$CHANGED_CHARTS" | while read -r chart; do
helm dependency list --max-col-width 120 2> /dev/null \
helm dependency list --max-col-width 120 $chart 2> /dev/null \
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do echo "$cmd" | sh; done || true

View File

@@ -53,7 +53,7 @@ jobs:
echo "$CHANGED_CHARTS"
echo "$CHANGED_CHARTS" | while read -r chart; do
helm dependency list --max-col-width 120 2> /dev/null \
helm dependency list --max-col-width 120 $chart 2> /dev/null \
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do echo "$cmd" | sh; done || true