summaryrefslogtreecommitdiff
path: root/tool/runruby.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-15 22:12:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-15 22:12:58 +0000
commit3f6e8aef372dab1ece62c93e0d048d605f7aed15 (patch)
treeffb56ec898337a9f8c4e6e32c811c6101fff7ba4 /tool/runruby.rb
parent3fb38c6178f64c99fba7a8b3ede3f2b3382337d0 (diff)
[Bug #6598]
* tool/runruby.rb (File.realpath): return real path of expanded path. [Bug #6598] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/runruby.rb')
-rwxr-xr-xtool/runruby.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/tool/runruby.rb b/tool/runruby.rb
index 0165634edf..86b9327350 100755
--- a/tool/runruby.rb
+++ b/tool/runruby.rb
@@ -34,8 +34,7 @@ end
unless defined?(File.realpath)
def File.realpath(*args)
- Dir.chdir do
- expand_path(*args)
+ Dir.chdir(expand_path(*args)) do
Dir.pwd
end
end