aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorMike McQuaid2015-02-23 14:57:09 +0000
committerMike McQuaid2015-02-23 14:57:09 +0000
commit0c2477391800d5b7939b57c1d72ef0dc364735cb (patch)
treec4e06498e04096bbc271b92940949543cb66ca82 /Library/Homebrew/cmd
parent8c26246591d087adef01352404557c9a50787995 (diff)
downloadhomebrew-0c2477391800d5b7939b57c1d72ef0dc364735cb.tar.bz2
pull: only link changed tap formulae.
Diffstat (limited to 'Library/Homebrew/cmd')
-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]