mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 16:56:27 +02:00
8 lines
261 B
Bash
Executable file
8 lines
261 B
Bash
Executable file
#!/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
|
|
rm sqlite-amalgamation.zip
|