Merge "pip-and-virtualenv: handle centos image-based builds"

This commit is contained in:
Zuul 2019-02-07 07:54:23 +00:00 committed by Gerrit Code Review
commit 25ba034a0e
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ if [[ $DISTRO_NAME =~ (opensuse|fedora|centos|centos7|rhel7) ]]; then
# tools run with "python3 -Es" to isolate themselves to the
# package installed versions. So we definitely don't want to
# clear the packaged versions out in that case.
if [[ $DISTRO_NAME == "centos" ]]; then
if [[ $DISTRO_NAME =~ (centos|centos7|rhel7) ]]; then
for pkg in $packages; do
rpm -ql $pkg | xargs rm -rf
done