From b3949f6f7a716ffb5c074c06b1c166923303896b Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Sat, 4 Jan 2020 00:35:11 +0100 Subject: [PATCH] coverage.sh: continue loop after finding a program to diff with --- coverage.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/coverage.sh b/coverage.sh index 81ae7f0..a6e0a06 100755 --- a/coverage.sh +++ b/coverage.sh @@ -113,18 +113,21 @@ cmp dev1.tar dev2.tar || ret=\$? if [ "\$ret" -ne 0 ]; then if type diffoscope >/dev/null; then diffoscope dev1.tar dev2.tar + continue else echo "no diffoscope installed" >&2 fi if type base64 >/dev/null; then base64 dev1.tar base64 dev2.tar + continue else echo "no base64 installed" >&2 fi if type xxd >/dev/null; then xxd dev1.tar xxd dev2.tar + continue else echo "no xxd installed" >&2 fi