We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 293e5f9 commit 5f13a9cCopy full SHA for 5f13a9c
hack/verify-helm-chart-index.sh
@@ -35,6 +35,12 @@ function check_url() {
35
echo "$local does not exist"
36
# ignore url which contains latest
37
if [[ "$url" == *"latest"* ]]; then
38
+ echo "ignore $url"
39
+ ignore_filename=$(basename "$url")
40
+ return
41
+ fi
42
+ # if ignore_filename is set, ignore url which contains ignore_filename
43
+ if [[ -n "${ignore_filename:-}" && "$url" == *"$ignore_filename"* ]]; then
44
echo "ignore $url"
45
return
46
fi
0 commit comments