Ignore errors when uninstalling a pkg with zypper
I.e. when trying to uninstall python-pip and it's not installed,
don't exit.
Change-Id: I21ac715a0090ad01811af47f23c61823dfa65629
diff --git a/functions-common b/functions-common
index 2c498a0..371c4f9 100644
--- a/functions-common
+++ b/functions-common
@@ -1286,7 +1286,7 @@
elif is_fedora; then
sudo ${YUM:-yum} remove -y "$@" ||:
elif is_suse; then
- sudo zypper rm "$@"
+ sudo zypper rm "$@" ||:
else
exit_distro_not_supported "uninstalling packages"
fi