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)

This commit is contained in:
Olcan
2025-04-20 08:22:17 -07:00
committed by GitHub
parent 044ccc6dd7
commit 99f5ed9ecb
4 changed files with 80 additions and 1 deletions

View File

@@ -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) {