mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 08:46:49 +02:00
Remove stray incomplete `unzip -d` command that would error on CI. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 lines
252 B
Bash
Executable file
7 lines
252 B
Bash
Executable file
#!/bin/bash
|
|
mkdir -p vendor
|
|
curl -o sqlite-amalgamation.zip https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip
|
|
unzip sqlite-amalgamation.zip
|
|
mv sqlite-amalgamation-3450300/* vendor/
|
|
rmdir sqlite-amalgamation-3450300
|
|
rm sqlite-amalgamation.zip
|