From e06b7bdd4fc7470e4c6a6aba4b7cd9a7fbccfcb3 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 18 Dec 2019 19:56:22 +0800 Subject: [PATCH] install-deps.sh: silence popd and pushd otherwise they will echo the pushed/popped directory Signed-off-by: Kefu Chai --- install-deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-deps.sh b/install-deps.sh index b9ea1d4fdf3..fb9d28f13b6 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -488,7 +488,7 @@ function activate_virtualenv() { function preload_wheels_for_tox() { local ini=$1 shift - pushd . + pushd . > /dev/null cd $(dirname $ini) local require_files=$(ls *requirements*.txt 2>/dev/null) || true local constraint_files=$(ls *constraints*.txt 2>/dev/null) || true @@ -507,7 +507,7 @@ function preload_wheels_for_tox() { mv $wip_wheelhouse wheelhouse md5sum $require_files $constraint_files > $md5 fi - popd + popd > /dev/null } # use pip cache if possible but do not store it outside of the source -- 2.39.5