chore(ci): format macos relay

main
Peter Steinberger 2025-12-20 20:41:21 +01:00
parent 714ba2a58d
commit abf05af474
1 changed files with 4 additions and 2 deletions

View File

@ -58,7 +58,10 @@ async function main() {
}); });
process.on("uncaughtException", (error) => { process.on("uncaughtException", (error) => {
console.error("[clawdis] Uncaught exception:", error.stack ?? error.message); console.error(
"[clawdis] Uncaught exception:",
error.stack ?? error.message,
);
process.exit(1); process.exit(1);
}); });
@ -66,4 +69,3 @@ async function main() {
} }
void main(); void main();