Unverified Commit e67a940d authored by Koichiro Iwao's avatar Koichiro Iwao
Browse files

do not exclude warn_unsupported versions in short list

it is not actually EoL'ed.  `warn_unsupported` indicates
that the versions are nearing EoL.
parent abaebf3e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1209,7 +1209,7 @@ list_definitions_exclude_eol() {
      [ -d "$DEFINITION_DIR" ] && \
      (
        cd "$DEFINITION_DIR";
        grep -L -e warn_eol -e warn_unsupported * | \
        grep -L -e warn_eol * | \
        grep -v -e '-rc[0-9]*$' -e '-preview[0-9]*$' -e '-dev$'
      )
    done