module Bindep::OS

Constants

LIST

Private Class Methods

sudo() click to toggle source
# File lib/bindep/os.rb, line 30
def self.sudo
  # homebrew does not need sudo for itself and other package managers
  brew? ? "" : "sudo"
end