gha: vendor scripts

This commit is contained in:
Alex Garcia 2024-04-20 14:13:16 -07:00
parent b182ec2262
commit bf0886b3b7
3 changed files with 16 additions and 0 deletions

8
scripts/vendor.sh Executable file
View file

@ -0,0 +1,8 @@
#!/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