Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 09e9c4b

Browse files
authored
fix: cortex serve attached mode outputs nothing (#727)
1 parent 89fcf34 commit 09e9c4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cortex-js/src/infrastructure/commanders/serve.command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class ServeCommand extends CommandRunner {
5151
NODE_ENV: 'production',
5252
},
5353
stdio: options?.detach ? 'ignore' : 'inherit',
54-
detached: true,
54+
detached: options?.detach,
5555
},
5656
);
5757
if (options?.detach) {

0 commit comments

Comments
 (0)