From 268b77327ea62e9ce8bd065a716bb3c851b96176 Mon Sep 17 00:00:00 2001
From: "Alan J. Pippin" <alan@pippins.net>
Date: Mon, 30 Jan 2012 21:47:55 -0700
Subject: [PATCH] Added comment about moving full image from tmpdir to final
 dir

---
 rip_dvd | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/rip_dvd b/rip_dvd
index 74290c0..e096655 100755
--- a/rip_dvd
+++ b/rip_dvd
@@ -1843,12 +1843,14 @@ if [ $mirror_mode -eq 1 ]; then
   if [[ "$ripper" == "makemkv" ]]; then
       # use makemkv to make an MKV file of the disk
       make_dvd_mkv_image "$tmpdir/$dvdname.mkv" "disc" "$makemkv_disc_id"
+      echo "   Moving $tmpdir/$dvdname.mkv -> $dest/$dvdname.mkv"
       mv "$tmpdir/$dvdname.mkv" "$dest/$dvdname.mkv"
       # add this video data to the mythtv DB
       fill_mythvideo_metadata "$dest_filename"
   else       
       # use ddrescue to make an ISO image of the disk
       make_dvd_iso_image "$tmpdir/$dvdname.iso"
+      echo "   Moving $tmpdir/$dvdname.mkv -> $dest/$dvdname.mkv"
       mv "$tmpdir/$dvdname.iso" "$dest/$dvdname.iso"
       # add this video data to the mythtv DB
       fill_mythvideo_metadata "$dest_filename"
-- 
2.34.1