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
This commit is contained in:
Claude
2026-03-28 17:07:45 +00:00
parent ccf69a91a7
commit 9ecd532a71
+1
View File
@@ -32,6 +32,7 @@ build() {
# Copy other root files # Copy other root files
cp README.md "$out/" 2>/dev/null || true cp README.md "$out/" 2>/dev/null || true
cp test-suite.html "$out/" 2>/dev/null || true
echo "$out/ ready" echo "$out/ ready"
} }