Skip to content

Commit b54ac97

Browse files
authored
Merge pull request #86 from odefun/feat/daemon-wait-38432
Keep daemon command alive after launch
2 parents 4776a29 + 436a391 commit b54ac97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ode",
3-
"version": "0.0.54",
3+
"version": "0.0.55",
44
"description": "Coding anywhere with your coding agents connected",
55
"module": "packages/core/index.ts",
66
"type": "module",

packages/core/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ if (command === "__runtime") {
215215

216216
if (command === "daemon") {
217217
await runDaemon();
218-
process.exit(0);
218+
await new Promise(() => {});
219219
}
220220

221221
if (args.includes("--version") || command === "version") {

0 commit comments

Comments
 (0)