genericUpdater: silence grep in version_is_ignored (#353464)

This commit is contained in:
Ryan Hendrickson 2024-11-06 21:38:45 -05:00 committed by GitHub
commit ba54c3676b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,7 +54,7 @@ let
function version_is_ignored() {
local tag="$1"
[ -n "$ignored_versions" ] && ${grep} -E -e "$ignored_versions" <<< "$tag"
[ -n "$ignored_versions" ] && ${grep} -q -E -e "$ignored_versions" <<< "$tag"
}
function version_is_unstable() {