ruby-changes:24056
From: nobu <ko1@a...>
Date: Sat, 16 Jun 2012 07:18:19 +0900 (JST)
Subject: [ruby-changes:24056] nobu:r36107 (trunk): [Bug #6598]
nobu 2012-06-16 07:12:58 +0900 (Sat, 16 Jun 2012) New Revision: 36107 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=36107 Log: [Bug #6598] * tool/runruby.rb (File.realpath): return real path of expanded path. [Bug #6598] Modified files: trunk/ChangeLog trunk/tool/runruby.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 36106) +++ ChangeLog (revision 36107) @@ -1,3 +1,8 @@ +Sat Jun 16 07:12:56 2012 Nobuyoshi Nakada <nobu@r...> + + * tool/runruby.rb (File.realpath): return real path of expanded path. + [Bug #6598] + Sat Jun 16 07:12:28 2012 Nobuyoshi Nakada <nobu@r...> * bootstraptest/runner.rb (main): ignore -j option for compatibility Index: tool/runruby.rb =================================================================== --- tool/runruby.rb (revision 36106) +++ tool/runruby.rb (revision 36107) @@ -34,8 +34,7 @@ unless defined?(File.realpath) def File.realpath(*args) - Dir.chdir do - expand_path(*args) + Dir.chdir(expand_path(*args)) do Dir.pwd end end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/