Module: OS::Linux::Cask::Caskroom::ClassMethods Private
- Defined in:
- extend/os/linux/cask/caskroom.rb
This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.
Instance Method Summary collapse
- #chgrp_path(path, _sudo) ⇒ void private
Instance Method Details
#chgrp_path(path, _sudo) ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
10 11 12 |
# File 'extend/os/linux/cask/caskroom.rb', line 10 def chgrp_path(path, _sudo) SystemCommand.run("chgrp", args: ["root", path], sudo: true) end |