fix match
All checks were successful
renovate / renovate (push) Successful in 2m24s

This commit is contained in:
2025-12-15 14:33:19 -06:00
parent 86e6f0e311
commit 8a955e206f
5 changed files with 5 additions and 6 deletions

View File

@@ -125,8 +125,7 @@ jobs:
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do
echo ">> Command: $cmd"
if [[ "$cmd" == "helm repo add oci:*" ]]; then
if [[ "$cmd" == "*oci://*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;

View File

@@ -107,7 +107,7 @@ jobs:
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do
if [[ "$cmd" == "helm repo add oci:*" ]]; then
if [[ "$cmd" == "*oci://*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;

View File

@@ -92,7 +92,7 @@ jobs:
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do
if [[ "$cmd" == "helm repo add oci:*" ]]; then
if [[ "$cmd" == "*oci://*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;

View File

@@ -112,7 +112,7 @@ jobs:
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do
if [[ "$cmd" == "helm repo add oci:*" ]]; then
if [[ "$cmd" == "*oci://*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;

View File

@@ -110,7 +110,7 @@ jobs:
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do
if [[ "$cmd" == "helm repo add oci:*" ]]; then
if [[ "$cmd" == "*oci://*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;