'acx' returns non-zero code if disks do not match.

This commit is contained in:
Rob Greene 2022-03-13 20:52:33 -05:00
parent 8ea6990dd5
commit fea602a0a4
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ public class CompareCommand extends ReadOnlyDiskImageCommandOptions {
if (result.getDifferenceCount() > limit.orElse(Integer.MAX_VALUE)) {
System.out.printf("There are %d more messages.\n", result.getDifferenceCount() - limit.get());
}
return 1;
}
return 0;