From a095dceb937219a143e74f3073ebd6fa00156b32 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Tue, 26 Sep 2017 09:53:52 -0400 Subject: [PATCH] echo not puts Signed-off-by: Kenneth Reitz <me@kennethreitz.org> --- bin/steps/python | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/steps/python b/bin/steps/python index d17b9e02..7c8e5c4c 100755 --- a/bin/steps/python +++ b/bin/steps/python @@ -7,12 +7,12 @@ PYTHON_VERSION=$(cat runtime.txt) if [[ $PYTHON_VERSION == "python-2*" ]]; then if [[ "$PYTHON_VERSION" != "$LATEST_2" ]]; then puts-warn "The latest version of Python 2 is $LATEST_2. We recommend upgrading by specifying this version in a runtime.txt file." - puts " Learn More: https://devcenter.heroku.com/articles/python-runtimes" + echo " Learn More: https://devcenter.heroku.com/articles/python-runtimes" fi else if [[ "$PYTHON_VERSION" != "$LATEST_3" ]]; then puts-warn "The latest version of Python 3 is $LATEST_3. We recommend upgrading by specifying this version in a runtime.txt file." - puts " Learn More: https://devcenter.heroku.com/articles/python-runtimes" + echo " Learn More: https://devcenter.heroku.com/articles/python-runtimes" fi fi -- GitLab