Module: OS::Mac::DevCmd::Bottle Private

Included in:
Homebrew::DevCmd::Bottle
Defined in:
extend/os/mac/dev-cmd/bottle.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

Instance Method Details

#gnu_tar(gnu_tar_formula) ⇒ String

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.

Parameters:

Returns:



18
19
20
# File 'extend/os/mac/dev-cmd/bottle.rb', line 18

def gnu_tar(gnu_tar_formula)
  "#{gnu_tar_formula.opt_bin}/gtar"
end

#tar_argsArray<String>

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.

Returns:



9
10
11
12
13
14
15
# File 'extend/os/mac/dev-cmd/bottle.rb', line 9

def tar_args
  if MacOS.version >= :catalina
    ["--no-mac-metadata", "--no-acls", "--no-xattrs"].freeze
  else
    [].freeze
  end
end