From c361c2ffc447e62792aadc47b6bdec0b78cb68b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Z=C3=BClke?= Date: Mon, 4 Mar 2019 23:46:33 +0100 Subject: [PATCH] HOTFIX for cedar-14 python builds (#805) --- bin/steps/sqlite3 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/steps/sqlite3 b/bin/steps/sqlite3 index 8855f30..3657d0b 100644 --- a/bin/steps/sqlite3 +++ b/bin/steps/sqlite3 @@ -4,7 +4,11 @@ source "$BIN_DIR/utils" sqlite3_version() { - SQLITE3_VERSION=${SQLITE3_VERSION:-$(dpkg -s libsqlite3-0 | grep Version | sed 's/Version: //')} + if [ "$STACK" = "cedar-14" ]; then + SQLITE3_VERSION="3.8.2-1ubuntu2.2" + else + SQLITE3_VERSION=${SQLITE3_VERSION:-$(dpkg -s libsqlite3-0 | grep Version | sed 's/Version: //')} + fi export SQLITE3_VERSION }