From 38f9a41a546e06ab16be39ef8f2b470628ecab3f Mon Sep 17 00:00:00 2001 From: David Zuelke Date: Fri, 21 Jun 2019 19:17:22 +0200 Subject: [PATCH] HOTFIX heroku-16 builds with sqlite3 upstream version has changed to 3.11.0-1ubuntu1.2, but local package version is still on 3.11.0-1ubuntu1.1, so the download fails otherwise --- bin/steps/sqlite3 | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 bin/steps/sqlite3 diff --git a/bin/steps/sqlite3 b/bin/steps/sqlite3 old mode 100644 new mode 100755 index 3657d0b..3faae6e --- a/bin/steps/sqlite3 +++ b/bin/steps/sqlite3 @@ -6,6 +6,8 @@ source "$BIN_DIR/utils" sqlite3_version() { if [ "$STACK" = "cedar-14" ]; then SQLITE3_VERSION="3.8.2-1ubuntu2.2" + elif [ "$STACK" = "heroku-16" ]; then + SQLITE3_VERSION="3.11.0-1ubuntu1.2" else SQLITE3_VERSION=${SQLITE3_VERSION:-$(dpkg -s libsqlite3-0 | grep Version | sed 's/Version: //')} fi