Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Apr 25, 2021
1 parent a16ec5d commit 67d08f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codeview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,14 +411,14 @@ const codeview = new Command<void>()
processes.forEach((process) => {
try {
process.close();
} catch (error) {
} catch (_) {
// ignore error
}
try {
if (process instanceof Deno.Process) {
process.kill(Deno.Signal.SIGKILL);
}
} catch (error) {
} catch (_) {
// ignore error
}
});
Expand Down

0 comments on commit 67d08f4

Please sign in to comment.