Skip to content

Commit 38f9a41

Browse files
committed
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
1 parent 53e33bd commit 38f9a41

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bin/steps/sqlite3

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ source "$BIN_DIR/utils"
66
sqlite3_version() {
77
if [ "$STACK" = "cedar-14" ]; then
88
SQLITE3_VERSION="3.8.2-1ubuntu2.2"
9+
elif [ "$STACK" = "heroku-16" ]; then
10+
SQLITE3_VERSION="3.11.0-1ubuntu1.2"
911
else
1012
SQLITE3_VERSION=${SQLITE3_VERSION:-$(dpkg -s libsqlite3-0 | grep Version | sed 's/Version: //')}
1113
fi

0 commit comments

Comments
 (0)