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

vcs.rb: no meaningless splat

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62218 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-02-05 03:19:39 +00:00
parent 3a4183d2b7
commit 59cc9e3a67

View file

@ -14,7 +14,7 @@ unless File.respond_to? :realpath
end
def IO.pread(*args)
STDERR.puts(*args.inspect) if $DEBUG
STDERR.puts(args.inspect) if $DEBUG
popen(*args) {|f|f.read}
end