From f25f9462a68a968a676d555613cdfa6e7516cad1 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 14 Jun 2017 15:34:35 +0200 Subject: replace some regexes with string-match grep --- bin/get-package-updates | 2 +- bin/return-assignment | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/get-package-updates b/bin/get-package-updates index f53d2ae..1db1ba0 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -215,7 +215,7 @@ while [ -n "${black_listed_new}" ]; do black_listed_new="$( echo "${black_listed_new}" | \ while read -r bl_package; do - grep "^${bl_package//./\\.}\$" "${work_dir}/package-infos/"*.depends | \ + grep -xF "${bl_package}" "${work_dir}/package-infos/"*.depends | \ cut -d: -f1 | \ sed ' s|^.*/|| diff --git a/bin/return-assignment b/bin/return-assignment index 2262c0a..9fd6591 100755 --- a/bin/return-assignment +++ b/bin/return-assignment @@ -161,7 +161,7 @@ ls "${work_dir}/package-states" | \ xargs -rn1 rm -f # remove all loops which are broken by this package -grep "^${1//./\\.}\$" "${work_dir}/build-list.loops/loop_"* 2> /dev/null | \ +grep -xF "$1" "${work_dir}/build-list.loops/loop_"* 2> /dev/null | \ cut -d: -f1 | \ sed 'p;s|$|.locked|' | \ xargs -rn1 rm -f -- cgit v1.2.3-54-g00ecf