Add inferred dark evidence drawer and synthetic bursts
This commit is contained in:
parent
ea61c3b013
commit
8fc8361390
4 changed files with 517 additions and 28 deletions
|
|
@ -30,6 +30,11 @@ const spawnChild = ({ name, cmd, cwd }: ChildSpec): void => {
|
|||
const exitCode = code ?? 0;
|
||||
const statusLabel = exitCode === 0 ? "exited" : "failed";
|
||||
console.error(`[dev] ${name} ${statusLabel} (${exitCode})`);
|
||||
if (name === "infra" && exitCode !== 0) {
|
||||
console.error(
|
||||
"[dev] Infra failed. Ensure Docker is installed and the daemon is running (OrbStack or Docker Desktop), then retry."
|
||||
);
|
||||
}
|
||||
shutdown(exitCode);
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue