This PR implements the ability for brew add to use single quotes instead of double quotes for Brewfile lines (e.g. brew 'bat' instead of brew "bat").
This feature can be enabled by setting the environment variable HOMEBREW_BUNDLE_QUOTE_TYPE to the value single. If HOMEBREW_BUNDLE_QUOTE_TYPE is set to any other value or is not set, brew add will default back to using double quotes.
This PR implements the ability for
brew add
to use single quotes instead of double quotes for Brewfile lines (e.g.brew 'bat'
instead ofbrew "bat"
).This feature can be enabled by setting the environment variable
HOMEBREW_BUNDLE_QUOTE_TYPE
to the valuesingle
. IfHOMEBREW_BUNDLE_QUOTE_TYPE
is set to any other value or is not set,brew add
will default back to using double quotes.