diff options
author | NARUSE, Yui <[email protected]> | 2019-11-22 19:05:58 +0900 |
---|---|---|
committer | NARUSE, Yui <[email protected]> | 2019-11-22 19:05:58 +0900 |
commit | 35608760ffae00e0daebecd260191019a9b32648 (patch) | |
tree | 90b5579532df133ab65a81a21def5dcedee1d9b5 | |
parent | a93d0a4e62c50a53ccdc3b2bc114f75a25bfc40f (diff) |
Add github repo to remove_tag
-rwxr-xr-x | tool/merger.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tool/merger.rb b/tool/merger.rb index 01911ad76b..2ea5d889cc 100755 --- a/tool/merger.rb +++ b/tool/merger.rb @@ -13,6 +13,7 @@ require 'shellwords' ENV['LC_ALL'] = 'C' ORIGIN = '[email protected]:ruby.git' +GITHUB = '[email protected]:ruby/ruby.git' module Merger REPOS = 'svn+ssh://[email protected]/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 |