From b8e3a0adca5367e250f4e00e3dddeaec51936b73 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Wed, 14 Jun 2023 06:50:35 +0100 Subject: [PATCH] Don't hide output Signed-off-by: Pedro Algarvio --- pkg/macos/build_python.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/macos/build_python.sh b/pkg/macos/build_python.sh index b4ef1656bc4..be179b7b166 100755 --- a/pkg/macos/build_python.sh +++ b/pkg/macos/build_python.sh @@ -191,16 +191,16 @@ fi #------------------------------------------------------------------------------- _msg "Installing relenv" if [ -n "${RELENV_VERSION}" ]; then - pip install relenv==${RELENV_VERSION} >/dev/null 2>&1 - export RELENV_FETCH_VERSION=${RELENV_VERSION} + pip install relenv==${RELENV_VERSION} else - pip install relenv >/dev/null 2>&1 + pip install relenv fi if [ -n "$(relenv --version)" ]; then _success else _failure fi +export RELENV_FETCH_VERSION=$(relenv --version) #------------------------------------------------------------------------------- # Building Python with Relenv @@ -212,7 +212,7 @@ else # We want to suppress the output here so it looks nice # To see the output, remove the output redirection _msg "Fetching python (relenv)" - relenv fetch --python $PY_VERSION >/dev/null 2>&1 + relenv fetch --python=$PY_VERSION if [ -f "$RELENV_DIR/build/$PY_VERSION-x86_64-macos.tar.xz" ]; then _success else