Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Exit with non-zero exit code to signal error
Browse files Browse the repository at this point in the history
  • Loading branch information
aronson committed Mar 10, 2024
1 parent 6d63d00 commit 06da8fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ircClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class CustomIrcClient extends IrcClient {
onError(error: ClientError) {
console.log(error);
if (this.exitOnReadError) {
Deno.exit();
Deno.exit(1);
}
}
bindNotify(
Expand Down

0 comments on commit 06da8fd

Please sign in to comment.