summaryrefslogtreecommitdiff
path: root/tool/vcs.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-30 22:27:11 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-30 22:27:11 +0900
commitf0945176c356cfe615ff6b4e6012e7e8e0911bd6 (patch)
treea521e1dd74ea2bc1335a846d078a427896df6fbb /tool/vcs.rb
parent22cd4027349f803efc7ede284376b7a7013f8dfe (diff)
Fix missing `gitcmd`
Diffstat (limited to 'tool/vcs.rb')
-rw-r--r--tool/vcs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/vcs.rb b/tool/vcs.rb
index b86c0e53f6..8379b3b548 100644
--- a/tool/vcs.rb
+++ b/tool/vcs.rb
@@ -461,7 +461,7 @@ class VCS
end
def stable
- cmd = %W"for-each-ref --format=\%(refname:short) refs/heads/ruby_[0-9]*"
+ cmd = gitcmd + %W"for-each-ref --format=\%(refname:short) refs/heads/ruby_[0-9]*"
branch(cmd_read(cmd)[/.*^(ruby_\d+_\d+)$/m, 1])
end