dvdrip-retry-botched-vobs: Retry using the newly determined block list.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 6 Mar 2022 03:44:54 +0000 (03:44 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 6 Mar 2022 03:44:54 +0000 (03:44 +0000)
Fortunately, I didn't actually engage this case when I did this to my
collection.

dvdrip-retry-botched-vobs

index 48dd813..32fd988 100755 (executable)
@@ -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