From 153c1c759b1fac33a1040421906a6b62726e1a4f Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Thu, 16 Jun 2011 20:52:28 -0700 Subject: [PATCH] Add --use-clang to completion script. --- Library/Contributions/brew_bash_completion.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh index 9384578e9f..083e2fd203 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