fix(relay): guard QR smoke mode

This commit is contained in:
Peter Steinberger
2026-01-07 02:41:01 +00:00
parent ff102e2afa
commit 59cc15f3cc
2 changed files with 2 additions and 1 deletions

View File

@@ -34,7 +34,7 @@ async function main() {
// Smoke test for QR modules in bun-compiled binaries.
// Verifies that QR code generation works in the bundled relay.
if (process.env.CLAWDBOT_SMOKE_QR === "1") {
if (process.env.CLAWDBOT_SMOKE_QR === "1" && args.length === 0) {
try {
const { renderQrPngBase64 } = await import("../web/qr-image.js");
await renderQrPngBase64("smoke-test");