aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/pull.rb
diff options
context:
space:
mode:
authorMike McQuaid2015-02-23 14:57:09 +0000
committerMike McQuaid2015-02-23 14:57:09 +0000
commit07ddf7aab5529429c5d128c3d2c56babcc76c6f9 (patch)
tree5351c2db5369e52fcde05b387dd920c75567d937 /Library/Homebrew/cmd/pull.rb
parente50badf11c517f0be661da2050a02aa0b0554caa (diff)
downloadbrew-07ddf7aab5529429c5d128c3d2c56babcc76c6f9.tar.bz2
pull: only link changed tap formulae.
Diffstat (limited to 'Library/Homebrew/cmd/pull.rb')
-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]