Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 24 Nov 2021 06:37:31
Message-Id: 1637735835.6ce6a7e06b64e87158b95fdc86a49bf3dc4a720f.graaff@gentoo
1 commit: 6ce6a7e06b64e87158b95fdc86a49bf3dc4a720f
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 24 06:32:06 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 24 06:37:15 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ce6a7e0
7
8 eclass/ruby-ng.eclass: turn off loud publication banner in cucumber
9
10 Use the environment variable rather than the command-line option for
11 easy backward compatibility with cucumber < 7.
12
13 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
14
15 eclass/ruby-ng.eclass | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
19 index 6b3c0c25eaa2..90da695a04c2 100644
20 --- a/eclass/ruby-ng.eclass
21 +++ b/eclass/ruby-ng.eclass
22 @@ -734,7 +734,7 @@ ruby-ng_cucumber() {
23 ;;
24 esac
25
26 - ${RUBY} -S cucumber ${cucumber_params} "$@" || die "cucumber failed"
27 + CUCUMBER_PUBLISH_QUIET=true ${RUBY} -S cucumber ${cucumber_params} "$@" || die "cucumber failed"
28 }
29
30 # @FUNCTION: ruby-ng_testrb-2