From 305a85e6aefe2cfe2fd283c96f761f6c67083ba0 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 1 Nov 2017 09:15:42 +0100 Subject: remove residues of break_loop concerning --- bin/sanity-check | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bin/sanity-check') diff --git a/bin/sanity-check b/bin/sanity-check index 700301c..37e2cd3 100755 --- a/bin/sanity-check +++ b/bin/sanity-check @@ -141,7 +141,7 @@ while [ $# -gt 0 ]; do "${tmp_dir}/messages" errors=$( - grep -vn '^\S\+ [0-9a-f]\{40\} [0-9a-f]\{40\} \S\+$\|^break_loops$' "${work_dir}/build-list" + grep -vn '^\S\+ [0-9a-f]\{40\} [0-9a-f]\{40\} \S\+$' "${work_dir}/build-list" ) || true if [ -n "${errors}" ]; then if [ ${silence} -le 1 ]; then @@ -153,8 +153,8 @@ while [ $# -gt 0 ]; do fi errors=$( - grep -vxF 'break_loops' "${work_dir}/build-list" | \ - awk '{print $1}' | \ + cut -d' ' -f1 < \ + "${work_dir}/build-list" | \ sort | \ uniq -d ) @@ -169,8 +169,8 @@ while [ $# -gt 0 ]; do errors=$( ( - grep -vxF 'break_loops' "${work_dir}/build-list" | \ - awk '{print $1}' + cut -d' ' -f1 < \ + "${work_dir}/build-list" cat "${work_dir}/deletion-list" ) | \ sort | \ -- cgit v1.2.3-54-g00ecf