From eb187da4c225782f271b449969790fd783eaadfb Mon Sep 17 00:00:00 2001 From: BNMetrics Date: Wed, 19 Aug 2020 20:47:48 +0100 Subject: [PATCH] using a file stamp for PYTHON_BUILDPACK_NO_DEFAULT_ADDON as bin/release does not read from env vars --- bin/release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/release b/bin/release index 38deda612..e78c1d7bb 100755 --- a/bin/release +++ b/bin/release @@ -5,7 +5,7 @@ BUILD_DIR=$1 MANAGE_FILE=$(cd "$BUILD_DIR" && find . -maxdepth 3 -type f -name 'manage.py' | head -1) MANAGE_FILE=${MANAGE_FILE:2} -PYTHON_BUILDPACK_NO_DEFAULT_ADDON=${PYTHON_BUILDPACK_NO_DEFAULT_ADDON:-} +PYTHON_BUILDPACK_NO_DEFAULT_ADDON="$BUILD_DIR/no_default_addons" cat <