Skip to content

Commit

Permalink
Fixed format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fussel178 committed Sep 13, 2024
1 parent 08feb71 commit f7c2111
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/cli/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ export function runServer(args: unknown): Promise<void> {
ac.abort(signal);
};
(["SIGHUP", "SIGINT", "SIGTERM"] as Deno.Signal[]).forEach((signal) =>
Deno.addSignalListener(signal, () => handler(signal)));
Deno.addSignalListener(signal, () => handler(signal))
);

console.log();
const server = Deno.serve(
Expand Down

0 comments on commit f7c2111

Please sign in to comment.