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) <noreply@anthropic.com>
This commit is contained in:
Alex Garcia 2026-03-31 13:14:18 -07:00
parent 85cf415397
commit 3cfc2e0c1f

View file

@ -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