class Mixlib::ShellOut

Public Instance Methods

fail?() click to toggle source
# File lib/bixby-client/patch/shellout.rb, line 11
def fail?
  ! success?
end
success?() click to toggle source
# File lib/bixby-client/patch/shellout.rb, line 7
def success?
  exitstatus == 0
end