Skip to content

Commit 9b63c4d

Browse files
authored
fix: eventual local does not exit on siginit (#457)
1 parent 4da0945 commit 9b63c4d

File tree

1 file changed

+5
-0
lines changed
  • packages/@eventual/cli/src/commands

1 file changed

+5
-0
lines changed

packages/@eventual/cli/src/commands/local.ts

+5
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,11 @@ export const local = (yargs: Argv) =>
337337
});
338338
process.on("SIGINT", () => {
339339
save();
340+
process.exit();
341+
});
342+
process.on("SIGTERM", () => {
343+
save();
344+
process.exit();
340345
});
341346
}
342347
);

0 commit comments

Comments
 (0)