module ChefCLI::Helpers

def usr_bin_prefix

platforms they are under /usr/bin
On Mac we place all of our symlinks under /usr/local/bin on other
Returns the directory that contains our main symlinks.
def usr_bin_prefix
  @usr_bin_prefix ||= macos? ? "/usr/local/bin" : "/usr/bin"
end