From ebd5beca66dd715c96855561fdb080707ff9e721 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Tue, 16 Jan 2018 14:36:44 +0100 Subject: [PATCH] Avoid repetitive quiet flags --- gitlab/before_build.sh | 2 +- gitlab/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gitlab/before_build.sh b/gitlab/before_build.sh index f93f158..4fb561e 100755 --- a/gitlab/before_build.sh +++ b/gitlab/before_build.sh @@ -37,7 +37,7 @@ echo "Contents of \`${CONDARC}':" cat ${CONDARC} # updates conda installation -run_cmd ${CONDA_ROOT}/bin/conda install --quiet --yes python conda=4.4 curl conda-build=3 +run_cmd ${CONDA_ROOT}/bin/conda install python conda=4.4 curl conda-build=3 # cleans up run_cmd ${CONDA_ROOT}/bin/conda clean --lock diff --git a/gitlab/build.sh b/gitlab/build.sh index 74764a3..e5faf01 100755 --- a/gitlab/build.sh +++ b/gitlab/build.sh @@ -21,4 +21,4 @@ fi BOB_BUILD_NUMBER=`head -n 1 ./_ci/${OS_SLUG}/${PYTHON_VERSION}/build_number.txt | tr -d '\n'` export_env BOB_BUILD_NUMBER -run_cmd ${CONDA_ROOT}/bin/conda build --variant-config-files _ci/conda_build_config.yaml --quiet --python=${PYTHON_VERSION} conda +run_cmd ${CONDA_ROOT}/bin/conda build --variant-config-files _ci/conda_build_config.yaml --python=${PYTHON_VERSION} conda -- GitLab