aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/cmd
diff options
context:
space:
mode:
authorJack Nagel2014-07-05 19:28:15 -0500
committerJack Nagel2014-07-05 19:28:50 -0500
commit9c757d6ee25c1acc2be8b74b3d1718456cd0ac9b (patch)
treedb6029e6e8db396caa9e48cd12566980e5e33aa2 /Library/Contributions/cmd
parent94c083dc2b94fc77aa6cf70677b94c1b06ccb007 (diff)
downloadbrew-9c757d6ee25c1acc2be8b74b3d1718456cd0ac9b.tar.bz2
Remove remaining references to "--fresh"
This option was removed in 8cdf4d8ebf439eb9a9ffcaa0e455ced9459e1e41 because it did not do anything.
Diffstat (limited to 'Library/Contributions/cmd')
-rwxr-xr-xLibrary/Contributions/cmd/brew-pull.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-pull.rb b/Library/Contributions/cmd/brew-pull.rb
index fd6c3fa7c..1f9ace776 100755
--- a/Library/Contributions/cmd/brew-pull.rb
+++ b/Library/Contributions/cmd/brew-pull.rb
@@ -136,7 +136,7 @@ ARGV.named.each do |arg|
changed_formulae.each do |f|
ohai "Installing #{formula}"
install = f.installed? ? 'upgrade' : 'install'
- safe_system 'brew', install, '--debug', '--fresh', formula
+ safe_system 'brew', install, '--debug', formula
end
end
end