chore: release 2026.1.11-3

This commit is contained in:
Peter Steinberger
2026-01-12 10:35:50 +00:00
parent 42b43f8c58
commit 5a29ec78ca
9 changed files with 50 additions and 18 deletions

View File

@@ -21,5 +21,12 @@ if (parsed.profile) {
process.argv = parsed.argv;
}
const { runCli } = await import("./cli/run-main.js");
await runCli(process.argv);
import("./cli/run-main.js")
.then(({ runCli }) => runCli(process.argv))
.catch((error) => {
console.error(
"[clawdbot] Failed to start CLI:",
error instanceof Error ? error.stack ?? error.message : error,
);
process.exitCode = 1;
});