style: oxfmt
parent
f8e673cdbc
commit
6b784a9771
|
|
@ -59,4 +59,3 @@ describe("memory tools", () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,4 +15,3 @@ export function buildTestCtx(overrides: Partial<MsgContext> = {}): FinalizedMsgC
|
||||||
...overrides,
|
...overrides,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -71,6 +71,9 @@ async function main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void main().catch((err) => {
|
void main().catch((err) => {
|
||||||
console.error("[clawdbot] Relay failed:", err instanceof Error ? (err.stack ?? err.message) : err);
|
console.error(
|
||||||
|
"[clawdbot] Relay failed:",
|
||||||
|
err instanceof Error ? (err.stack ?? err.message) : err,
|
||||||
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue