diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2016-06-14 20:13:28 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2016-06-14 20:13:28 -0700 |
commit | 39c34e113636135e7ec76dee90168d355b29c7b7 (patch) | |
tree | 4b35aabb100100bd28a8eaa5c2dd6256222277b0 | |
parent | Switch to HTTPS. (diff) | |
download | rbot-gentoo-39c34e113636135e7ec76dee90168d355b29c7b7.tar.gz rbot-gentoo-39c34e113636135e7ec76dee90168d355b29c7b7.tar.bz2 rbot-gentoo-39c34e113636135e7ec76dee90168d355b29c7b7.zip |
!meta -v: fix project expansion.
Fixes: https://bugs.gentoo.org/show_bug.cgi?id=585982
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r-- | gentoo-data.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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'] |