method

exit_status

ruby latest stable - Class: Bundler::FriendlyErrors

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

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