From 9384977e8281268274ff8a5f7bdd54bac1efad89 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 6 Mar 2022 03:44:54 +0000 Subject: [PATCH 1/1] dvdrip-retry-botched-vobs: Retry using the newly determined block list. Fortunately, I didn't actually engage this case when I did this to my collection. --- dvdrip-retry-botched-vobs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvdrip-retry-botched-vobs b/dvdrip-retry-botched-vobs index 48dd813..32fd988 100755 --- a/dvdrip-retry-botched-vobs +++ b/dvdrip-retry-botched-vobs @@ -29,7 +29,7 @@ find "$@" -type f -name "*.retry" -print | sort | while IFS= read -r r; do case $rc,$try in 0,*) rm -f "$r"; break ;; 1,0) echo "Giving up :-("; mv "$r.new" "$r"; break ;; - 1,*) echo "Still broken! Let's try again..." ;; + 1,*) echo "Still broken! Let's try again..."; mv "$r.new" "$r"; ;; *) echo "Failed! :-("; exit 2 ;; esac done -- 2.11.0