diff --git a/lib/src/executable.dart b/lib/src/executable.dart index 4323a231..98c2b10e 100644 --- a/lib/src/executable.dart +++ b/lib/src/executable.dart @@ -57,7 +57,9 @@ void main(List args) { stderr.flush(); } - exit(1); + // Exit code 65 indicates invalid data per + // http://www.freebsd.org/cgi/man.cgi?query=sysexits. + exit(65); } }