From 61dfecc69795e892f44722048c5b3f57939d89df Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Tue, 18 Oct 2016 17:12:04 -0700 Subject: [PATCH] Use exit code 65 for Sass errors. --- lib/src/executable.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); } }