From 2f6cce88df391b51d2ec3b6e9632a966e2e07c9d Mon Sep 17 00:00:00 2001 From: Daniel <152929550+brahyt-sf@users.noreply.github.com> Date: Tue, 21 May 2024 09:16:35 -0700 Subject: [PATCH] Update bin/compile Co-authored-by: Ed Morley <501702+edmorley@users.noreply.github.com> --- bin/compile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bin/compile b/bin/compile index 36809f2..40e43a6 100755 --- a/bin/compile +++ b/bin/compile @@ -15,10 +15,11 @@ BUILDPACK_DIR="$(dirname $(dirname $0))" if ! command -v stunnel4 > /dev/null; then - echo "! This buildpack uses stunnel, which isn’t supported on heroku-24 and later." - echo "! You don’t need this buildpack for Redis 6+. Remove it with the command:" - echo "! $ heroku buildpacks:remove heroku/redis" - echo "! To use Redis’ native TLS support, see https://devcenter.heroku.com/articles/heroku-redis#security-and-compliance." + echo "! This buildpack uses stunnel, which isn’t supported on heroku-24 and later." >&2 + echo "! You don’t need this buildpack for Redis 6+. Remove it with the command:" >&2 + echo "! $ heroku buildpacks:remove heroku/redis" >&2 + echo "! To use Redis’ native TLS support, see https://devcenter.heroku.com/articles/heroku-redis#security-and-compliance:" >&2 + echo "! https://devcenter.heroku.com/articles/heroku-redis#security-and-compliance" >&2 exit 1 fi