commit: b25170173cc785748ee82bac30e7be9b5b8690ba Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org> AuthorDate: Thu Jul 23 00:44:53 2015 +0000 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org> CommitDate: Thu Jul 23 00:44:53 2015 +0000 URL: https://gitweb.gentoo.org/proj/grs.git/commit/?id=b2517017
scripts/cycle1.sh: be more fault tollerant. scripts/cycle.1.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/cycle.1.sh b/scripts/cycle.1.sh index afeada3..837a338 100644 --- a/scripts/cycle.1.sh +++ b/scripts/cycle.1.sh @@ -4,4 +4,8 @@ source /etc/profile env-update emerge -b1q layman layman -L -layman -a musl + +# Don't return exit 1 if we fail since +# we may have already added the overlay +layman -a musl || true +layman -S
