1
0
Fork 0

Fix update_portage.sh

This commit is contained in:
Stefan Reimer 2016-05-20 02:13:11 +00:00
parent ab4aafbe3d
commit d8b1829787
1 changed files with 2 additions and 2 deletions

View File

@ -112,10 +112,10 @@ trap "cleanup" INT TERM
mount_overlay
# End early if there are no upstream changes
echo 'Syncing gentoo portage tree ...'
emaint sync -r gentoo 2>/dev/null | grep -q 'You are already up to date'
# End early if there are no upstream changes
[ $? -ne 0 ] && { echo 'No upstream changes. Exiting.'; cleanup; }
[ $? -eq 0 ] && { echo 'No upstream changes. Exiting.'; cleanup; }
# Optional step to customize the tree, mostly to alter upstream use masks
customize