diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/update.sh | 4 | ||||
| -rw-r--r-- | Library/brew.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/update.sh b/Library/Homebrew/cmd/update.sh index 0ad66b8b4..9ba5b2503 100644 --- a/Library/Homebrew/cmd/update.sh +++ b/Library/Homebrew/cmd/update.sh @@ -7,10 +7,6 @@ source "$HOMEBREW_LIBRARY/Homebrew/utils/lock.sh" -brew() { - "$HOMEBREW_BREW_FILE" "$@" -} - git() { "$HOMEBREW_LIBRARY/ENV/scm/git" "$@" } diff --git a/Library/brew.sh b/Library/brew.sh index 5589bcc68..0469244b3 100644 --- a/Library/brew.sh +++ b/Library/brew.sh @@ -24,6 +24,10 @@ chdir() { cd "$@" >/dev/null || odie "Error: failed to cd to $*!" } +brew() { + "$HOMEBREW_BREW_FILE" "$@" +} + # Force UTF-8 to avoid encoding issues for users with broken locale settings. if [[ "$(locale charmap 2> /dev/null)" != "UTF-8" ]] then |
