method

exit_status

exit_status(error)
public

No documentation available.

# File lib/bundler/friendly_errors.rb, line 51
    def exit_status(error)
      case error
      when BundlerError then error.status_code
      when Thor::Error then 15
      when SystemExit then error.status
      else 1
      end
    end