From 6e41de6767a282e4b133d3c80085c294bc49b307 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 11 Oct 2003 07:12:09 +0000 Subject: fix previous change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/pathname.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/pathname.rb b/lib/pathname.rb index 9ececcb074..8df49159c4 100644 --- a/lib/pathname.rb +++ b/lib/pathname.rb @@ -111,6 +111,8 @@ class Pathname # it may return relative pathname. # Otherwise it returns absolute pathname. def realpath(force_absolute=true) + File.stat(@path) + top = %r{\A/} =~ @path ? '/' : '' unresolved = @path.scan(%r{[^/]+}) resolved = [] @@ -123,7 +125,7 @@ class Pathname resolved.unshift unresolved.pop else path = top + unresolved.join('/') - if File.lstat(path).symlink? + if FileTest.symlink? path link = File.readlink(path) if %r{\A/} =~ link top = '/' -- cgit v1.2.3