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 }