commit: 39c34e113636135e7ec76dee90168d355b29c7b7 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org> AuthorDate: Wed Jun 15 03:13:28 2016 +0000 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org> CommitDate: Wed Jun 15 03:13:28 2016 +0000 URL: https://gitweb.gentoo.org/proj/rbot-gentoo.git/commit/?id=39c34e11
!meta -v: fix project expansion. Fixes: https://bugs.gentoo.org/show_bug.cgi?id=585982 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org> gentoo-data.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gentoo-data.rb b/gentoo-data.rb index 2d651b3..792244a 100644 --- a/gentoo-data.rb +++ b/gentoo-data.rb @@ -114,7 +114,7 @@ class GentooPlugin < Plugin meta_print(m, pkg) pkg['maintainers'].each { |maint| - return if maint['type'] != 'project' + next if maint['type'] != 'project' debug("meta -v calling proj for #{maint['email']}") p = params.clone p[:project] = maint['email']
