Include nfo file for movies but not for tv-shows
Posted: 26 Aug 2014, 13:23
Hi,
I'm trying to modify amc.groovy so that it will keep the original nfo-file for movies but not for tv-shows.
I've succeded to include the nfo file by adding f.hasExtension('nfo') as inputfile, but how can I get it to ignore for tv-shows?
tried to add
but made it always exclude nfo-files.
thanks.
I'm trying to modify amc.groovy so that it will keep the original nfo-file for movies but not for tv-shows.
I've succeded to include the nfo file by adding f.hasExtension('nfo') as inputfile, but how can I get it to ignore for tv-shows?
tried to add
Code: Select all
if (forceSeries) {
input = input.findAll{ f -> !f.hasExtension('nfo')}
}
thanks.