diff options
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/maintainers.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tasks/maintainers.rb b/tasks/maintainers.rb index e13d4724b0..f6385860c4 100644 --- a/tasks/maintainers.rb +++ b/tasks/maintainers.rb @@ -21,7 +21,7 @@ SOURCE = File.join(File.dirname(__FILE__), "..", "MAINTAINERS.toml") TARGET = File.join(File.dirname(__FILE__), "..", "MAINTAINERS.md") # The list of repositories that teams should own -REPOSITORIES = ["chef/chef", "chef/chef-census", "chef/chef-repo", +REPOSITORIES = ["chef/chef", "chef/chef-dk", "chef/chef-census", "chef/chef-repo", "chef/client-docs", "chef/ffi-yajl", "chef/libyajl2-gem", "chef/mixlib-authentication", "chef/mixlib-cli", "chef/mixlib-config", "chef/mixlib-install", "chef/mixlib-log", @@ -139,8 +139,8 @@ begin update_team_privacy(team) add_team_members(team, additions) remove_team_members(team, deletions) - rescue - puts "failed for #{team}" + rescue => e + puts "failed for #{team}: #{e.message}" end def update_team_privacy(team) |