commit: 385cc41fa061321cca78342bc7bfe8b6a4af2f06
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 9 20:53:35 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jun 9 20:54:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385cc41f
dev-python/pip: Correct pushd/popd redirects
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pip/pip-21.1.2-r1.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-python/pip/pip-21.1.2-r1.ebuild
b/dev-python/pip/pip-21.1.2-r1.ebuild
index 69f4adb26c5..6dddd21d4f6 100644
--- a/dev-python/pip/pip-21.1.2-r1.ebuild
+++ b/dev-python/pip/pip-21.1.2-r1.ebuild
@@ -68,9 +68,9 @@ python_prepare_all() {
cp "${DISTDIR}"/{${SETUPTOOLS_WHL},${WHEEL_WHL}} \
tests/data/common_wheels/ || die
- pushd "${WORKDIR}/virtualenv-${VENV_PV}" 2>/dev/null || die
+ pushd "${WORKDIR}/virtualenv-${VENV_PV}" >/dev/null || die
eapply "${FILESDIR}/virtualenv-${VENV_PV}-py310.patch"
- popd 2>/dev/null || die
+ popd >/dev/null || die
fi
}
@@ -99,9 +99,9 @@ python_test() {
)
distutils_install_for_testing
- pushd "${WORKDIR}/virtualenv-${VENV_PV}" 2>/dev/null || die
+ pushd "${WORKDIR}/virtualenv-${VENV_PV}" >/dev/null || die
distutils_install_for_testing
- popd 2>/dev/null || die
+ popd >/dev/null || die
local -x GENTOO_PIP_TESTING=1 \
PATH="${TEST_DIR}/scripts:${PATH}" \