From f9921b4954ca2335ebc91cae46d98da4ded95937 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Sat, 19 Apr 2025 08:23:03 -0400 Subject: [PATCH] Update location of SQLite zip files The build process is failing as SQLite has changed this location. Also add -L to deal with future redirects automatically. --- scripts/vendor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/vendor.sh b/scripts/vendor.sh index 0706aa5e..2f0b4c5d 100755 --- a/scripts/vendor.sh +++ b/scripts/vendor.sh @@ -1,6 +1,6 @@ #!/bin/bash mkdir -p vendor -curl -o sqlite-amalgamation.zip https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip +curl -L -o sqlite-amalgamation.zip https://sqlite.org/2024/sqlite-amalgamation-3450300.zip unzip -d unzip sqlite-amalgamation.zip mv sqlite-amalgamation-3450300/* vendor/