diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-02-25 04:35:12 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-02-25 04:35:12 +0000 |
| commit | f1f3e2e0d1b224529132a5ac30562925e251a75d (patch) | |
| tree | adb51f82245bdfd9daf80ce7e152a675b8b7fe68 /lib | |
| parent | cfef93be1e1e4dfcd0cb7a6396e24f47b64095c9 (diff) | |
| download | ruby-f1f3e2e0d1b224529132a5ac30562925e251a75d.tar.gz ruby-f1f3e2e0d1b224529132a5ac30562925e251a75d.tar.xz ruby-f1f3e2e0d1b224529132a5ac30562925e251a75d.zip | |
* lib/shell.rb (Shell::expand_path): relative to @cwd.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/shell.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell.rb b/lib/shell.rb index bed9c052e..acc4adec0 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 |
