From f7c594eedcd7f59ef998d045e3f2136299e14912 Mon Sep 17 00:00:00 2001 From: Daniel Perez Date: Sat, 14 Jul 2018 11:33:24 +0900 Subject: [PATCH] Avoid poluting stdout --- bin/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/utils.sh b/bin/utils.sh index b7913a8..effc0d1 100755 --- a/bin/utils.sh +++ b/bin/utils.sh @@ -9,7 +9,7 @@ ensure_python_build_installed() { } download_python_build() { - echo "Downloading python-build..." + echo "Downloading python-build..." >&2 local pyenv_url="https://github.com/pyenv/pyenv.git" git clone $pyenv_url "$(pyenv_path)" }