mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-05 17:05:04 -05:00
43f844b6f3
* move shared scripts folder
10 lines
258 B
Groovy
10 lines
258 B
Groovy
// filebot -script "http://filebot.sf.net/scripts/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*")
|
|
}
|