From 255588f751549c906e6f44c9208979aabed86e58 Mon Sep 17 00:00:00 2001 From: Dan Forsberg Date: Mon, 19 Oct 2020 13:00:54 +0100 Subject: [PATCH] Update SQLite3 version --- build-sqlite | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-sqlite b/build-sqlite index 062a8c0..588663c 100755 --- a/build-sqlite +++ b/build-sqlite @@ -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