Skip to content

Commit

Permalink
Remove exit status check.
Browse files Browse the repository at this point in the history
  • Loading branch information
jberkel committed May 17, 2010
1 parent 6fbbe02 commit 07eb9ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/interactive_editor.rb
Expand Up @@ -55,7 +55,7 @@ def system(file, *args)

module MRI
def system(file, *args)
Kernel::system(file, *args) or raise "error exec'ing #{file}: #{$?}"
Kernel::system(file, *args) #or raise "error exec'ing #{file}: #{$?}"
end
end

Expand Down

0 comments on commit 07eb9ce

Please sign in to comment.