From aaa30fd040781355739b5cceb372df46851a2f5b Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 25 Feb 2002 04:35:12 +0000 Subject: [PATCH] * lib/shell.rb (Shell::expand_path): relative to @cwd. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/shell.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0c35b13cb7..5734fbce21 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Feb 25 13:32:13 2002 Nobuyoshi Nakada + + * lib/shell.rb (Shell::expand_path): relative to @cwd. + Sun Feb 24 17:20:22 2002 Akinori MUSHA * ext/digest/*/*.h: Merge from rough. diff --git a/lib/shell.rb b/lib/shell.rb index bed9c052e8..acc4adec0b 100644 --- a/lib/shell.rb +++ b/lib/shell.rb @@ -116,7 +116,7 @@ class Shell attr_reader :process_controller def expand_path(path) - File.expand_path(path) + File.expand_path(path, @cwd) end # Most Shell commands are defined via CommandProcessor