Don't hide output

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
Pedro Algarvio 2023-06-14 06:50:35 +01:00 committed by Pedro Algarvio
parent ced7fea9f4
commit b8e3a0adca

View file

@ -191,16 +191,16 @@ fi
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
_msg "Installing relenv" _msg "Installing relenv"
if [ -n "${RELENV_VERSION}" ]; then if [ -n "${RELENV_VERSION}" ]; then
pip install relenv==${RELENV_VERSION} >/dev/null 2>&1 pip install relenv==${RELENV_VERSION}
export RELENV_FETCH_VERSION=${RELENV_VERSION}
else else
pip install relenv >/dev/null 2>&1 pip install relenv
fi fi
if [ -n "$(relenv --version)" ]; then if [ -n "$(relenv --version)" ]; then
_success _success
else else
_failure _failure
fi fi
export RELENV_FETCH_VERSION=$(relenv --version)
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Building Python with Relenv # Building Python with Relenv
@ -212,7 +212,7 @@ else
# We want to suppress the output here so it looks nice # We want to suppress the output here so it looks nice
# To see the output, remove the output redirection # To see the output, remove the output redirection
_msg "Fetching python (relenv)" _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 if [ -f "$RELENV_DIR/build/$PY_VERSION-x86_64-macos.tar.xz" ]; then
_success _success
else else