mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 01:30:20 +00:00
Don't hide output
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
ced7fea9f4
commit
b8e3a0adca
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue