Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions hack/verify-helm-chart-index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ function check_url() {
echo "$local exists"
else
echo "$local does not exist"
# ignore url which contains latest
if [[ "$url" == *"latest"* ]]; then
echo "ignore $url"
return
fi
exit 1
fi
fi
Expand Down
Loading