aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorMike McQuaid2017-03-12 20:22:29 +0000
committerGitHub2017-03-12 20:22:29 +0000
commitc67c338a061735fe01142017f6b14e8200d94b8c (patch)
tree68a2468364594c94b89a9e81f6dc496e33b05b38 /Library/Homebrew/cmd
parent5d9215b2118e14cf666be3bd3c26146130ff7342 (diff)
parent282622e449e640a61361890296eee46d880f77a3 (diff)
downloadbrew-c67c338a061735fe01142017f6b14e8200d94b8c.tar.bz2
Merge pull request #2322 from MikeMcQuaid/autoupdate-stop-skipping-no-formula-taps
update: stop autoupdate skipping no formula taps.
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/update.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/Library/Homebrew/cmd/update.sh b/Library/Homebrew/cmd/update.sh
index c5e618403..5cfdb3f46 100644
--- a/Library/Homebrew/cmd/update.sh
+++ b/Library/Homebrew/cmd/update.sh
@@ -458,14 +458,6 @@ EOS
then
# Skip taps checked/fetched recently
[[ -n "$(find "$DIR/.git/FETCH_HEAD" -type f -mtime -"${HOMEBREW_AUTO_UPDATE_SECS}"s 2>/dev/null)" ]] && exit
-
- # Skip taps without formulae (but always update Homebrew/brew and Homebrew/homebrew-core)
- if [[ "$DIR" != "$HOMEBREW_REPOSITORY" &&
- "$DIR" != "$HOMEBREW_LIBRARY/Taps/homebrew/homebrew-core" ]]
- then
- FORMULAE="$(find "$DIR" -maxdepth 1 \( -name "*.rb" -or -name Formula -or -name HomebrewFormula \) -print -quit)"
- [[ -z "$FORMULAE" ]] && exit
- fi
fi
UPSTREAM_REPOSITORY_URL="$(git config remote.origin.url)"