From 99f5ed9ecb2aa491612ecaed4139cdeda086681f Mon Sep 17 00:00:00 2001 From: Olcan Date: Sun, 20 Apr 2025 08:22:17 -0700 Subject: Minimal container setup. Install docker (or podman), build container with scripts/build_container.sh, then start with scripts/start_container.sh. Exit with ^C for now. (#61) --- packages/cli/src/tools/terminal.tool.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'packages/cli/src') diff --git a/packages/cli/src/tools/terminal.tool.ts b/packages/cli/src/tools/terminal.tool.ts index 3813b7e8..93e70953 100644 --- a/packages/cli/src/tools/terminal.tool.ts +++ b/packages/cli/src/tools/terminal.tool.ts @@ -266,7 +266,9 @@ Use this tool for running build steps (\`npm install\`, \`make\`), linters (\`es `Persistent bash process exited unexpectedly (code: ${code}, signal: ${signal}). State is lost. Queued commands cancelled.`, ), ); - setTimeout(() => this.initializeShell(), 1000); + if (signal !== 'SIGINT') { + setTimeout(() => this.initializeShell(), 1000); + } }); setTimeout(() => { if (this.bashProcess && !this.bashProcess.killed) { -- cgit v1.2.3