Merge "Fix handling of pip and virtualenv on openSUSE"

This commit is contained in:
Jenkins 2013-10-04 18:37:30 +00:00 committed by Gerrit Code Review
commit 2671a8b97e
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ python-setuptools # instead of python-distribute; dist:sle11sp2
python-cmd2 # dist:opensuse-12.3
python-pylint
python-unittest2
python-virtualenv
screen
tar
tcpdump

View File

@ -926,7 +926,7 @@ function uninstall_package() {
elif is_fedora; then
sudo yum remove -y "$@"
elif is_suse; then
sudo rpm -e "$@"
sudo zypper rm "$@"
else
exit_distro_not_supported "uninstalling packages"
fi