commit: 961e7ce85b178198ac7e4bdddacaaca6a9ef73d2
Author: Ettore Di Giacinto <mudler <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 11 16:21:51 2016 +0000
Commit: Ettore Di Giacinto <mudler <AT> gentoo <DOT> org>
CommitDate: Sun Dec 11 16:21:51 2016 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=961e7ce8
scripts: replace fatal() calls with err() in keyword-helper summary output
scripts/bin/keyword-helper | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/bin/keyword-helper b/scripts/bin/keyword-helper
index 5042739..7d10bb5 100755
--- a/scripts/bin/keyword-helper
+++ b/scripts/bin/keyword-helper
@@ -129,6 +129,6 @@ for (@KEYWORD_PACKAGES) {
}
if(@FAILED > 0){
- fatal "Operation failed for the following ebuilds:";
- fatal "** ".$_ for @FAILED;
+ err "Operation failed for the following ebuilds:";
+ err "** ".$_ for @FAILED;
}