aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Homebrew/cmd/update.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/update.rb b/Library/Homebrew/cmd/update.rb
index 709e138ba..6e340e3c4 100644
--- a/Library/Homebrew/cmd/update.rb
+++ b/Library/Homebrew/cmd/update.rb
@@ -59,7 +59,9 @@ module Homebrew extend self
# automatically tap any migrated formulae's new tap
report.select_formula(:D).each do |f|
next unless (HOMEBREW_CELLAR/f).exist?
- tap_user, tap_repo = TAP_MIGRATIONS[f].split '/'
+ migration = TAP_MIGRATIONS[f]
+ next unless migration
+ tap_user, tap_repo = migration.split '/'
begin
install_tap tap_user, tap_repo
rescue AlreadyTappedError => e