From 3cfc2e0c1f08ed8120547b61c316afa0ee97b837 Mon Sep 17 00:00:00 2001 From: Alex Garcia Date: Tue, 31 Mar 2026 13:14:18 -0700 Subject: [PATCH] Fix broken unzip -d line in vendor.sh Remove stray incomplete `unzip -d` command that would error on CI. Co-Authored-By: Claude Opus 4.6 (1M context) --- scripts/vendor.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/vendor.sh b/scripts/vendor.sh index 0706aa5..033ea1e 100755 --- a/scripts/vendor.sh +++ b/scripts/vendor.sh @@ -1,7 +1,6 @@ #!/bin/bash mkdir -p vendor curl -o sqlite-amalgamation.zip https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip -unzip -d unzip sqlite-amalgamation.zip mv sqlite-amalgamation-3450300/* vendor/ rmdir sqlite-amalgamation-3450300