mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -06:00
- do not remove *all* symlinks from referenced dirs, only broken ones - restore dir permission after use so we don't leave behind 777 dirs - add some better testing around `Cask::Pkg` - clean up `FakeSystemCommand` interface in tests refs #1274
5 lines
153 B
Ruby
5 lines
153 B
Ruby
class Cask::NeverSudoSystemCommand < Cask::SystemCommand
|
|
def self.run(command, options={})
|
|
super(command, options.merge(:sudo => false))
|
|
end
|
|
end
|