Browse Source

archlinux: checkupdates output is not checked anymore, ignore it

Marek Marczykowski-Górecki 3 years ago
parent
commit
e1ebbf2893
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package-managers/upgrades-installed-check

+ 1 - 1
package-managers/upgrades-installed-check

@@ -32,7 +32,7 @@ elif [ -e /etc/arch-release ]; then
     ## Archlinux
     set -e
     set -o pipefail
-    checkupdates_output="$(checkupdates 2>&1)"
+    checkupdates >/dev/null 2>&1
     exit_code="$?"
     [ "$exit_code" -eq 2 ] && echo "true" && exit 0
     echo "false"