From 3f9a80ad2434165edb6ea55133461091acd823d8 Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Mon, 30 Sep 2019 15:14:28 -0700 Subject: [PATCH] don't check stack defensively as its not forwards compatible --- builds/runtimes/python3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builds/runtimes/python3 b/builds/runtimes/python3 index 5e5b290..5578cec 100755 --- a/builds/runtimes/python3 +++ b/builds/runtimes/python3 @@ -19,7 +19,7 @@ dep_url=https://python.org/ftp/python/${version_number}/${python_version}.tgz # Install SQLITE, as headers are not available out of the box on the stack apt-get install libsqlite3-dev needed=( libsqlite3-dev ) -if [[ $STACK != "heroku-16" && $STACK != "heroku-16" ]]; then +if [[ $STACK == "cedar-14" ]]; then needed+=( realpath ) # Check whether our packages are missing on the stack