From 8f1942a9a500a5eaa41afac07ea29b3e9e1c1bc5 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Thu, 17 Jul 2014 16:24:38 -0400 Subject: [PATCH] don't hardcode cedar-14 --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index 9eccee5e..27bbcb67 100755 --- a/bin/compile +++ b/bin/compile @@ -178,7 +178,7 @@ if [ ! "$SKIP_INSTALL" ]; then # Prepare destination directory. mkdir -p .heroku/python - curl http://lang-python.s3.amazonaws.com/cedar-14/runtimes/$PYTHON_VERSION.tar.gz -s | tar zxv -C .heroku/python &> /dev/null + curl http://lang-python.s3.amazonaws.com/$STACK/runtimes/$PYTHON_VERSION.tar.gz -s | tar zxv -C .heroku/python &> /dev/null if [[ $? != 0 ]] ; then puts-warn "Requested runtime ($PYTHON_VERSION) is not available on the $STACK stack." puts-warn "Aborting. More info: https://devcenter.heroku.com/articles/python-support" -- GitLab