Skip to content

Commit

Permalink
Exit 1 on errors
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronjensen committed Mar 13, 2017
1 parent 6ddfb72 commit 5db201f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var server = net.createServer({
try {
con.write(linter(cwd, args, text));
} catch (e) {
con.write(e.toString() + '\n');
con.write(e.toString() + '\n# exit 1');
}
con.end();
});
Expand Down

0 comments on commit 5db201f

Please sign in to comment.