aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rake.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rake.rb')
-rwxr-xr-xlib/rake.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/rake.rb b/lib/rake.rb
index f78cd3cd3d..480068be7a 100755
--- a/lib/rake.rb
+++ b/lib/rake.rb
@@ -2032,10 +2032,10 @@ module Rake
yield
rescue SystemExit => ex
# Exit silently with current status
- exit(ex.status)
- rescue SystemExit, OptionParser::InvalidOption => ex
+ raise
+ rescue OptionParser::InvalidOption => ex
# Exit silently
- exit(1)
+ exit(false)
rescue Exception => ex
# Exit with error message
$stderr.puts "rake aborted!"
@@ -2046,7 +2046,7 @@ module Rake
$stderr.puts ex.backtrace.find {|str| str =~ /#{@rakefile}/ } || ""
$stderr.puts "(See full trace by running task with --trace)"
end
- exit(1)
+ exit(false)
end
end