Skip to content

Commit c361c2f

Browse files
dzuelkeCaseyFaist
authored andcommitted
HOTFIX for cedar-14 python builds (#805)
1 parent 13d2a58 commit c361c2f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

bin/steps/sqlite3

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
source "$BIN_DIR/utils"
55

66
sqlite3_version() {
7-
SQLITE3_VERSION=${SQLITE3_VERSION:-$(dpkg -s libsqlite3-0 | grep Version | sed 's/Version: //')}
7+
if [ "$STACK" = "cedar-14" ]; then
8+
SQLITE3_VERSION="3.8.2-1ubuntu2.2"
9+
else
10+
SQLITE3_VERSION=${SQLITE3_VERSION:-$(dpkg -s libsqlite3-0 | grep Version | sed 's/Version: //')}
11+
fi
812

913
export SQLITE3_VERSION
1014
}

0 commit comments

Comments
 (0)