filebot/website/data/shell/chkall.groovy

10 lines
270 B
Groovy
Raw Normal View History

2011-11-05 00:29:59 +00:00
// filebot -script "http://filebot.sourceforge.net/data/shell/chkall.groovy" <folder>
/*
* 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*")
}