Skip to content
Snippets Groups Projects
Commit e68a4d3e authored by Adam Vandenberg's avatar Adam Vandenberg
Browse files

Add --use-gcc to bash completion

parent de5ac725
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ _brew_to_completion()
# handle standard --options
if [[ "$prev" == "install" && "$cur" == --* ]]; then
local opts=$(
local opts=( --force --debug --use-llvm --ignore-dependencies --HEAD )
local opts=( --force --debug --use-gcc --use-llvm --ignore-dependencies --HEAD )
for o in ${opts[*]}; do
[[ " ${COMP_WORDS[*]} " =~ " $o " ]] || echo "$o"
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment