diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Contributions/brew_bash_completion.sh | 2 | ||||
| -rw-r--r-- | Library/Homebrew/extend/ARGV.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh index 73910090e..d9ad1c9cd 100644 --- a/Library/Contributions/brew_bash_completion.sh +++ b/Library/Contributions/brew_bash_completion.sh @@ -475,7 +475,7 @@ _brew_style () local cur="${COMP_WORDS[COMP_CWORD]}" case "$cur" in --*) - __brewcomp "--fix --homebrew-developer" + __brewcomp "--fix" return ;; esac diff --git a/Library/Homebrew/extend/ARGV.rb b/Library/Homebrew/extend/ARGV.rb index 9491883fc..b8cfdf9fa 100644 --- a/Library/Homebrew/extend/ARGV.rb +++ b/Library/Homebrew/extend/ARGV.rb @@ -125,7 +125,7 @@ module HomebrewArgvExtension end def homebrew_developer? - include?("--homebrew-developer") || !ENV["HOMEBREW_DEVELOPER"].nil? + !ENV["HOMEBREW_DEVELOPER"].nil? end def sandbox? |
