Skip to content

Commit 9b8ee3e

Browse files
committed
Fix SQlite zip downloading
1 parent a05703b commit 9b8ee3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GitHubActions/install_sqlite.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ cd ./workdir
3939
vsrc="sqlite-src-${VERSION}"
4040
adr="https://www.sqlite.org/${YEAR}/$vsrc.zip"
4141
echo "SQLite source code archive: $adr"
42-
curl -O "$adr"
42+
wget "$adr" -O "$vsrc.zip"
4343
unzip "$vsrc.zip" > /dev/null
4444
cd "$vsrc"
4545

0 commit comments

Comments
 (0)