This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import groovy.transform.Field | |
| @Field int processed = 0; | |
| def dir1 = new File(args[0]) | |
| def dir2 = new File(args[1]) | |
| def diff = compareDirs(dir1, dir2) | |
| diff.each { | |
| printFileInfo(it.left, dir1, "Left: ") |