Fixes #220. For software installed by and managed by Homebrew, site_data_dir and site_config_dir should point to the Homebrew-managed directories. (I added site_cache_dir as well just because it was easy to add.) This also means that the multipath option is now relevant for software running on macOS, as well as Linux/Unix.
Fixes #220. For software installed by and managed by Homebrew,
site_data_dir
andsite_config_dir
should point to the Homebrew-managed directories. (I addedsite_cache_dir
as well just because it was easy to add.) This also means that themultipath
option is now relevant for software running on macOS, as well as Linux/Unix.Note that Homebrew actually has three default prefixes: one for Intel macOS computers, one for Apple Silicon macOS computers, and one for Linux computers. This pull request only addresses Apple Silicon macOS computers, where the default prefix is
/opt/homebrew
. I did this for several reasons:/opt/homebrew
is the clearest indication that the software is indeed running under Homebrew;/usr/local
could mean user-installed software.Thoughts?