1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add github repo to remove_tag

This commit is contained in:
NARUSE, Yui 2019-11-22 19:05:58 +09:00
parent a93d0a4e62
commit 35608760ff

View file

@ -13,6 +13,7 @@ require 'shellwords'
ENV['LC_ALL'] = 'C'
ORIGIN = 'git@git.ruby-lang.org:ruby.git'
GITHUB = 'git@github.com:ruby/ruby.git'
module Merger
REPOS = 'svn+ssh://svn@ci.ruby-lang.org/ruby/'
@ -178,6 +179,7 @@ class << Merger
else
execute('git', 'tag', '-d', tagname)
execute('git', 'push', ORIGIN, ":#{tagname}", interactive: true)
execute('git', 'push', GITHUB, ":#{tagname}", interactive: true)
end
end