From e657f58cf95b3790f9254b88715b4819e732dabf Mon Sep 17 00:00:00 2001 From: Balint Tobik Date: Mon, 27 Jan 2025 14:22:28 +0100 Subject: [PATCH] ci: replace egrep with grep -E to avoid deprecation warning https://lists.gnu.org/archive/html/info-gnu/2022-09/msg00001.html Signed-off-by: Balint Tobik --- ci/gh-util.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/gh-util.sh b/ci/gh-util.sh index 3ab62b9b81..9f8f91eda7 100755 --- a/ci/gh-util.sh +++ b/ci/gh-util.sh @@ -79,8 +79,8 @@ list_issues_for_pr() # " " # local issues=$(echo "$commits" |\ - egrep -v "^( | )" |\ - egrep -i "fixes:* *(#*[0-9][0-9]*)" |\ + grep -v -E "^( | )" |\ + grep -i -E "fixes:* *(#*[0-9][0-9]*)" |\ tr ' ' '\n' |\ grep "[0-9][0-9]*" |\ sed 's/[.,\#]//g' |\