summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorNARUSE, Yui <naruse@airemix.jp>2025-12-25 15:31:50 +0900
committerNARUSE, Yui <naruse@airemix.jp>2025-12-25 15:31:50 +0900
commit6a66129d6c289b0da99cd89592f5ee948da6f381 (patch)
treef52c1d3e7c47f9540ad16078e8bbdfbdafb7267a /tool
parentd375bcc965d4a0c661785fa94150f6202e99c1ce (diff)
fix the condition of www repo
Diffstat (limited to 'tool')
-rwxr-xr-xtool/releng/gen-mail.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/releng/gen-mail.rb b/tool/releng/gen-mail.rb
index 6dc0e4cec1..17fa499d69 100755
--- a/tool/releng/gen-mail.rb
+++ b/tool/releng/gen-mail.rb
@@ -10,7 +10,7 @@ end
# Confirm current directory is www.ruby-lang.org's working directory
def confirm_w_r_l_o_wd
File.foreach('.git/config') do |line|
- return true if line.include?('git@github.com:ruby/www.ruby-lang.org.git')
+ return true if line.include?('ruby/www.ruby-lang.org.git')
end
abort "Run this script in www.ruby-lang.org's working directory"
end