summaryrefslogtreecommitdiff
path: root/lib/shell
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-05 09:27:21 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-05 09:27:21 +0000
commit808aa5f3183a0ebb20e61c80260fa111b337bec9 (patch)
treed10d7abe63a6dde453a96ee99953380b89a9e854 /lib/shell
parent5e12815fb1cbc102258bfe4904acf7e75f4c7e54 (diff)
* lib/shell/command-processor.rb (Shell::CommandProcessor::rmdir):
simple typo. * string.c (str_new4): ptr may refer null_str. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/shell')
-rw-r--r--lib/shell/command-processor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell/command-processor.rb b/lib/shell/command-processor.rb
index 07879567fd..876192e8b1 100644
--- a/lib/shell/command-processor.rb
+++ b/lib/shell/command-processor.rb
@@ -205,7 +205,7 @@ class Shell
#
def rmdir(*path)
for dir in path
- Dir.rmdir(expand_path(path))
+ Dir.rmdir(expand_path(dir))
end
end