aboutsummaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-29 16:55:55 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-29 16:55:55 +0000
commit32104120ea69eabe0b59c4cb6561f79e55d5a8ca (patch)
tree8f83c5d53403b356275be93f6eb37c742e5f0acb /tool
parentbecbc5a42b4871b93b9db5d93ee291f04f931df7 (diff)
downloadruby-32104120ea69eabe0b59c4cb6561f79e55d5a8ca.tar.gz
* tool/redmine-backporter.rb: add given revision to current changests
on associating the revision to the related ticket. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-xtool/redmine-backporter.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/tool/redmine-backporter.rb b/tool/redmine-backporter.rb
index 72046e2498..aedd2d3d36 100755
--- a/tool/redmine-backporter.rb
+++ b/tool/redmine-backporter.rb
@@ -406,7 +406,7 @@ eom
"rel" => proc{|args|
# this feature requires custom redmine which allows add_related_issue API
- raise CommandSyntaxError unless /\A(\d+)\z/ =~ args
+ raise CommandSyntaxError unless /\Ar?(\d+)\z/ =~ args
unless @issue
puts "ticket not selected"
next
@@ -420,9 +420,10 @@ eom
res.value
rescue
$stderr.puts "deployed redmine doesn't have https://github.com/ruby/bugs.ruby-lang.org/commit/01fbba60d68cb916ddbccc8a8710e68c5217171d\nask naruse or hsbt"
- return
+ raise
end
puts res.body
+ @changesets << rev
class << @changesets
remove_method(:validated) rescue nil
end