aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-03-21 12:42:10 -0700
committerAdam Vandenberg2011-03-21 12:42:10 -0700
commitb66b6c6b20519fc0a4fe4aa95c088bfb924093f2 (patch)
tree3451786894738b161a1112be94d2cbb1fc94eb52 /Library
parent4ee43a4a202501eadc23ab2402bea2ade446a117 (diff)
downloadhomebrew-b66b6c6b20519fc0a4fe4aa95c088bfb924093f2.tar.bz2
add --verbose to brew install completion
Diffstat (limited to 'Library')
-rw-r--r--Library/Contributions/brew_bash_completion.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh
index 651f24dab..ee66a04e3 100644
--- a/Library/Contributions/brew_bash_completion.sh
+++ b/Library/Contributions/brew_bash_completion.sh
@@ -32,7 +32,7 @@ _brew_to_completion()
# handle standard --options
if [[ "$prev" == "install" && "$cur" == --* ]]; then
local opts=$(
- local opts=( --force --debug --use-gcc --use-llvm --ignore-dependencies --HEAD )
+ local opts=( --force --verbose --debug --use-gcc --use-llvm --ignore-dependencies --HEAD )
for o in ${opts[*]}; do
[[ " ${COMP_WORDS[*]} " =~ " $o " ]] || echo "$o"
done