We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13d2a58 commit c361c2fCopy full SHA for c361c2f
bin/steps/sqlite3
@@ -4,7 +4,11 @@
4
source "$BIN_DIR/utils"
5
6
sqlite3_version() {
7
- SQLITE3_VERSION=${SQLITE3_VERSION:-$(dpkg -s libsqlite3-0 | grep Version | sed 's/Version: //')}
+ 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
12
13
export SQLITE3_VERSION
14
}
0 commit comments