]> code.delx.au - monosys/blobdiff - bin/check-local-updates
check-local-updates: don't return error if arch checkupdates fails
[monosys] / bin / check-local-updates
index 52397b1e7caa096aca7b7913a742946210627dfe..806c58fe63ce9a5b9ff43e6127d80e2036778be1 100755 (executable)
@@ -13,9 +13,9 @@ function is_arch {
 }
 
 if is_debian; then
-    aptitude search ~U
+    aptitude search ~U || true
 fi
 
 if is_arch; then
-    checkupdates
+    checkupdates || true
 fi