aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-06-16 20:52:28 -0700
committerAdam Vandenberg2011-06-16 20:58:06 -0700
commit153c1c759b1fac33a1040421906a6b62726e1a4f (patch)
treecc2eb98e4bf1e440a2cdb80e6205cf1c7dd7cb1b /Library
parente8ebd6756e45cbc2e6fae7f30f03f51ee320fe94 (diff)
downloadbrew-153c1c759b1fac33a1040421906a6b62726e1a4f.tar.bz2
Add --use-clang to completion script.
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 9384578e9..083e2fd20 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 --verbose --debug --use-gcc --use-llvm --ignore-dependencies --HEAD )
+ local opts=( --force --verbose --debug --use-clang --use-gcc --use-llvm --ignore-dependencies --HEAD )
for o in ${opts[*]}; do
[[ " ${COMP_WORDS[*]} " =~ " $o " ]] || echo "$o"
done