From 9ecd532a7176aab68611d0e0e05a8552b1824d0e Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 28 Mar 2026 17:07:45 +0000 Subject: [PATCH] fix: include test-suite.html in build output build.sh was not copying test-suite.html to dist/, causing "File not found" when opening it as an extension page. https://claude.ai/code/session_01KF4i7Ra7zCEDskxDBaNtcT --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index cd6681e..d300bff 100755 --- a/build.sh +++ b/build.sh @@ -32,6 +32,7 @@ build() { # Copy other root files cp README.md "$out/" 2>/dev/null || true + cp test-suite.html "$out/" 2>/dev/null || true echo " → $out/ ready" }