Merge pull request #780 from MikeMcQuaid/usr-local-cellar

brew.sh: don't require /usr/local/Cellar creation.
This commit is contained in:
Mike McQuaid 2016-08-24 14:41:52 +01:00 committed by GitHub
commit 66f26259ac

View File

@ -38,13 +38,13 @@ then
export LC_ALL="en_US.UTF-8" export LC_ALL="en_US.UTF-8"
fi fi
# Where we store built products; /usr/local/Cellar if it exists, # Where we store built products; a Cellar in HOMEBREW_PREFIX (often /usr/local
# otherwise a Cellar relative to the Repository. # for bottles) unless there's already a Cellar in HOMEBREW_REPOSITORY.
if [[ -d "$HOMEBREW_PREFIX/Cellar" ]] if [[ -d "$HOMEBREW_REPOSITORY/Cellar" ]]
then then
HOMEBREW_CELLAR="$HOMEBREW_PREFIX/Cellar"
else
HOMEBREW_CELLAR="$HOMEBREW_REPOSITORY/Cellar" HOMEBREW_CELLAR="$HOMEBREW_REPOSITORY/Cellar"
else
HOMEBREW_CELLAR="$HOMEBREW_PREFIX/Cellar"
fi fi
case "$*" in case "$*" in