[前][次][番号順一覧][スレッド一覧]

ruby-changes:74305

From: Nobuyoshi <ko1@a...>
Date: Tue, 1 Nov 2022 11:40:58 +0900 (JST)
Subject: [ruby-changes:74305] aa8c6759ee (master): vcs.rb: do not reference the constant before assignment

https://git.ruby-lang.org/ruby.git/commit/?id=aa8c6759ee

From aa8c6759ee7d740939eab9ee0e94260aa8f4f010 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Tue, 1 Nov 2022 11:23:31 +0900
Subject: vcs.rb: do not reference the constant before assignment

---
 tool/lib/vcs.rb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tool/lib/vcs.rb b/tool/lib/vcs.rb
index d96caddbf2..857b7928a4 100644
--- a/tool/lib/vcs.rb
+++ b/tool/lib/vcs.rb
@@ -424,12 +424,12 @@ class VCS https://github.com/ruby/ruby/blob/trunk/tool/lib/vcs.rb#L424
       SAFE_DIRECTORIES ||=
         begin
           command = ENV["GIT"] || 'git'
-          IO.popen(%W"#{command} config --global --get-all safe.directory", &:read).split("\n")
+          dirs = IO.popen(%W"#{command} config --global --get-all safe.directory", &:read).split("\n")
         rescue
           command = nil
-          []
+          dirs = []
         ensure
-          VCS.dump(SAFE_DIRECTORIES, "safe.directory: ") if $DEBUG
+          VCS.dump(dirs, "safe.directory: ") if $DEBUG
           COMMAND = command
         end
 
-- 
cgit v1.2.3


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]