From: Mark Wooding Date: Sun, 6 Mar 2022 03:44:54 +0000 (+0000) Subject: dvdrip-retry-botched-vobs: Retry using the newly determined block list. X-Git-Url: https://git.distorted.org.uk/~mdw/dvdrip/commitdiff_plain/9384977e8281268274ff8a5f7bdd54bac1efad89?hp=5db44c22f270d7a43456dccc57c3222a841d47ce 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. --- 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