From b88e0ceb854bd10eb323971eb7a4e2a970c60c48 Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 7 Jul 2017 02:14:57 +0000 Subject: [PATCH] * tool/redmine-backporter.rb (show): just report and ignore if a feature ticket is specified instead of aborting. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/redmine-backporter.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tool/redmine-backporter.rb b/tool/redmine-backporter.rb index b3ed96d3d2..38ebf55fed 100755 --- a/tool/redmine-backporter.rb +++ b/tool/redmine-backporter.rb @@ -368,6 +368,11 @@ commands = { unless i["changesets"] abort "You don't have view_changesets permission" end + unless i["custom_fields"] + puts "The specified ticket \##{@issue} seems to be a feature ticket" + @issue = nil + next + end id = "##{i["id"]}".color(*PRIORITIES[i["priority"]["name"]]) sio = StringIO.new sio.puts <