diff --git a/trunk/tvmover.pl b/trunk/tvmover.pl index 7d8abf4..e268946 100755 --- a/trunk/tvmover.pl +++ b/trunk/tvmover.pl @@ -97,6 +97,9 @@ sub process_completed_directory { # If the entry is a directory and is named after an episode, attempt to scan it if ( -d $completed_filename) { + # Skip any "sample" directories + next if $completed_torrent =~ m/sample/i; + # Attempt to grab the series name from the dir name my ($series) = decode_filename($completed_torrent); next unless $series;