filebot/website/scripts/chkall.groovy

10 lines
258 B
Groovy
Raw Normal View History

// filebot -script "http://filebot.sf.net/scripts/chkall.groovy" <folder>
2011-11-05 00:29:59 +00:00
/*
* Check all sfv/md5/sha1 files and stop if a conflict is found
*/
args.getFiles().findAll { it.isVerification() }.each {
if (!check(file:it))
throw new Exception("*ERROR*")
}