aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/pull.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb
index e0d7e94df..eaee811e3 100644
--- a/Library/Homebrew/cmd/pull.rb
+++ b/Library/Homebrew/cmd/pull.rb
@@ -107,7 +107,7 @@ module Homebrew
).each_line do |line|
line = line.chomp
name = File.basename(line, ".rb")
- changed_formulae_paths << Pathname.new("#{formula_dir}/#{line}")
+ changed_formulae_paths << Pathname.new("#{formula_dir}/#{line}") if tap_dir
begin
changed_formulae << Formula[name]