fix archlinux detection of available upgrades
note: checkupdates return 2 when no updates are available (source: man page and source code)
This commit is contained in:
parent
1841ba7878
commit
7faa707d26
@ -34,7 +34,8 @@ elif [ -e /etc/arch-release ]; then
|
|||||||
set -o pipefail
|
set -o pipefail
|
||||||
checkupdates_output="$(checkupdates 2>&1)"
|
checkupdates_output="$(checkupdates 2>&1)"
|
||||||
exit_code="$?"
|
exit_code="$?"
|
||||||
echo "$checkupdates_output" | grep -qF -- '->' && echo "false" || echo "true"
|
[ "$exit_code" -eq 2 ] && echo "true" && exit 0
|
||||||
|
echo "false"
|
||||||
elif [ -e /etc/gentoo-release ]; then
|
elif [ -e /etc/gentoo-release ]; then
|
||||||
## Gentoo
|
## Gentoo
|
||||||
set -e
|
set -e
|
||||||
|
Loading…
Reference in New Issue
Block a user