homebrew-cask/test/support/never_sudo_system_command.rb

6 lines
151 B
Ruby

class Hbc::NeverSudoSystemCommand < Hbc::SystemCommand
def self.run(command, options={})
super(command, options.merge(:sudo => false))
end
end