diff options
| author | Olcan <[email protected]> | 2025-04-20 08:22:17 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-20 08:22:17 -0700 |
| commit | 99f5ed9ecb2aa491612ecaed4139cdeda086681f (patch) | |
| tree | d3dbb72075c2a8afc51abe895fdda070442ecc0e /packages/cli/src | |
| parent | 044ccc6dd710c660faf6220409358eff375a099c (diff) | |
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)
Diffstat (limited to 'packages/cli/src')
| -rw-r--r-- | packages/cli/src/tools/terminal.tool.ts | 4 |
1 files changed, 3 insertions, 1 deletions
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) { |
