Browse code

Merge "Ignore errors when uninstalling a pkg with zypper"

Jenkins authored on 2016/03/11 09:55:17
Showing 1 changed files
... ...
@@ -1306,7 +1306,7 @@ function uninstall_package {
1306 1306
     elif is_fedora; then
1307 1307
         sudo ${YUM:-yum} remove -y "$@" ||:
1308 1308
     elif is_suse; then
1309
-        sudo zypper rm "$@"
1309
+        sudo zypper rm "$@" ||:
1310 1310
     else
1311 1311
         exit_distro_not_supported "uninstalling packages"
1312 1312
     fi