Update SQLite3 version

This commit is contained in:
Dan Forsberg 2020-10-19 13:00:54 +01:00
parent 723b3d6ac7
commit 255588f751
1 changed files with 2 additions and 2 deletions

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