aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-07-05 19:28:15 -0500
committerJack Nagel2014-07-05 19:28:50 -0500
commit64744646e9be93dd758ca5cf202c6605accf4deb (patch)
treef4c84ca45e04fbbe104d05564bb45be2a0697062 /Library
parent408d8440046bcdb96fbd05e4f53edceb044c5a4d (diff)
downloadhomebrew-64744646e9be93dd758ca5cf202c6605accf4deb.tar.bz2
Remove remaining references to "--fresh"
This option was removed in 8cdf4d8ebf439eb9a9ffcaa0e455ced9459e1e41 because it did not do anything.
Diffstat (limited to 'Library')
-rw-r--r--Library/Contributions/brew_fish_completion.fish1
-rwxr-xr-xLibrary/Contributions/cmd/brew-pull.rb2
2 files changed, 1 insertions, 2 deletions
diff --git a/Library/Contributions/brew_fish_completion.fish b/Library/Contributions/brew_fish_completion.fish
index f473be1e0..a0f20270e 100644
--- a/Library/Contributions/brew_fish_completion.fish
+++ b/Library/Contributions/brew_fish_completion.fish
@@ -131,7 +131,6 @@ complete -c brew -s d -l debug -n '__fish_complete_brew_command install' -d "Ope
complete -c brew -s f -l force -n '__fish_complete_brew_command force' -d "Install formula even if blacklisted"
complete -c brew -s i -l interactive -n '__fish_complete_brew_command install' -d "Open a subshell to install manually"
complete -c brew -l git -n '__fish_complete_brew_command install' -d 'Create a git repo (useful for making patches)'
-complete -c brew -l fresh -n '__fish_complete_brew_command install' -d "Do not reuse options from previous installs"
complete -c brew -l build-from-source -n '__fish_complete_brew_command install' -d "Compile from source even if a bottle is provided"
complete -c brew -l devel -n '__fish_complete_brew_command install' -d "Install the development version"
complete -c brew -l HEAD -n '__fish_complete_brew_command install' -d "Install the HEAD version"
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