From 6d5c19b211e60d809be153d1b29739e3b8c3deb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Michelle?= Date: Wed, 10 Dec 2025 09:35:23 +0100 Subject: [PATCH] adds trim --- deploy/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/run.ts b/deploy/run.ts index 441a3413..41532948 100644 --- a/deploy/run.ts +++ b/deploy/run.ts @@ -79,7 +79,7 @@ RewriteRule ^(.*)$ ${mainReleaseDir}/$1 [L] throw new Error(`Extraction failed: ${extractResponse.status} - ${extractText}`) } // Verify extraction was fully successful (must start with ✅, not ⚠️) - if (!extractText.startsWith("✅")) { + if (!extractText.trim().startsWith("✅")) { throw new Error(`Extraction incomplete: ${extractText}`) }