HOTFIX for cedar-14 python builds (#805)

This commit is contained in:
David Zülke
2019-03-04 23:46:33 +01:00
committed by Casey
parent 13d2a58add
commit c361c2ffc4
+5 -1
View File
@@ -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
}