Browse code

Merge "Fix handling of pip and virtualenv on openSUSE"

Jenkins authored on 2013/10/05 03:37:30
Showing 2 changed files
... ...
@@ -11,7 +11,6 @@ python-setuptools # instead of python-distribute; dist:sle11sp2
11 11
 python-cmd2 # dist:opensuse-12.3
12 12
 python-pylint
13 13
 python-unittest2
14
-python-virtualenv
15 14
 screen
16 15
 tar
17 16
 tcpdump
... ...
@@ -926,7 +926,7 @@ function uninstall_package() {
926 926
     elif is_fedora; then
927 927
         sudo yum remove -y "$@"
928 928
     elif is_suse; then
929
-        sudo rpm -e "$@"
929
+        sudo zypper rm "$@"
930 930
     else
931 931
         exit_distro_not_supported "uninstalling packages"
932 932
     fi