otherwise they will echo the pushed/popped directory
Signed-off-by: Kefu Chai <kchai@redhat.com>
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
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