summaryrefslogtreecommitdiffstats
path: root/lib/shell/system-command.rb
diff options
context:
space:
mode:
authorkeiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-21 12:21:11 +0000
committerkeiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-21 12:21:11 +0000
commitae4bf4b37a410c8221ae0b1239ed52a46661d2a6 (patch)
tree0fea1beac9f8e651f0a9cc275796a32a2be94949 /lib/shell/system-command.rb
parentc8dc24431b7604e584e9acdf63c3ee0286d51d36 (diff)
downloadruby-ae4bf4b37a410c8221ae0b1239ed52a46661d2a6.tar.gz
ruby-ae4bf4b37a410c8221ae0b1239ed52a46661d2a6.tar.xz
ruby-ae4bf4b37a410c8221ae0b1239ed52a46661d2a6.zip
* lib/shell/*: bug fix for Shell#system(command_line_string).
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/shell/system-command.rb')
-rw-r--r--lib/shell/system-command.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell/system-command.rb b/lib/shell/system-command.rb
index 6071c1c84..f87ba890e 100644
--- a/lib/shell/system-command.rb
+++ b/lib/shell/system-command.rb
@@ -16,7 +16,7 @@ class Shell
class SystemCommand < Filter
def initialize(sh, command, *opts)
if t = opts.find{|opt| !opt.kind_of?(String) && opt.class}
- Shell.Fail TypeError, t.class, "String"
+ Shell.Fail Error::TypeError, t.class, "String"
end
super(sh)
@command = command