From: Kefu Chai Date: Wed, 18 Dec 2019 11:56:22 +0000 (+0800) Subject: install-deps.sh: silence popd and pushd X-Git-Tag: v15.1.0~436^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e06b7bdd4fc7470e4c6a6aba4b7cd9a7fbccfcb3;p=ceph.git install-deps.sh: silence popd and pushd otherwise they will echo the pushed/popped directory Signed-off-by: Kefu Chai --- 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