package-managers: handle Gentoo
This commit is contained in:
parent
5db43b9534
commit
76142139a0
@ -35,6 +35,13 @@ elif [ -e /etc/arch-release ]; then
|
|||||||
checkupdates_output="$(checkupdates 2>&1)"
|
checkupdates_output="$(checkupdates 2>&1)"
|
||||||
exit_code="$?"
|
exit_code="$?"
|
||||||
echo "$checkupdates_output" | grep -qF -- '->' && echo "false" || echo "true"
|
echo "$checkupdates_output" | grep -qF -- '->' && echo "false" || echo "true"
|
||||||
|
elif [ -e /etc/gentoo-release ]; then
|
||||||
|
## Gentoo
|
||||||
|
set -e
|
||||||
|
set -o pipefail
|
||||||
|
emerge_output="$(emerge -puDv @world 2>&1)"
|
||||||
|
exit_code="$?"
|
||||||
|
echo "$emerge_output" | grep -qF -- '[ebuild' && echo "false" || echo "true"
|
||||||
else
|
else
|
||||||
echo "Check not implemented for this distribution" >&2
|
echo "Check not implemented for this distribution" >&2
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user