1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-04-03 09:39:47 +00:00

Update SQLite3 version

This commit is contained in:
Dan Forsberg 2020-10-19 13:00:54 +01:00
parent 723b3d6ac7
commit 255588f751

View File

@ -1,11 +1,11 @@
#!/bin/bash
set -euo pipefail
VERSION=3240000
VERSION=3330000
fetch_if_needed() {
if [ ! -e sqlite ]; then
curl --fail "https://sqlite.org/2018/sqlite-autoconf-${VERSION}.tar.gz" > sqlite.tar.gz
curl --fail "https://sqlite.org/2020/sqlite-autoconf-${VERSION}.tar.gz" > sqlite.tar.gz
tar xf sqlite.tar.gz
rm sqlite.tar.gz
mv sqlite-autoconf-${VERSION} sqlite