2012-07-28 21:17:29 +00:00
|
|
|
// filebot -script fn:chkall <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*")
|
|
|
|
}
|