diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2010-03-16 13:30:52 -0600 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2010-03-16 13:30:52 -0600 |
commit | c71ec1d68fc569035289380d1679bd92df6337ab (patch) | |
tree | 983872524f6f173aa5a50934a69b946cf94dc8c4 /priv/shell-completion/bash | |
parent | be6bb20c59e034769baf4c2171f29a8fb15c3ccb (diff) | |
parent | 459b312adab8fc25d72f7f3255db23c4cf44e24f (diff) |
Merging w/ mainline
Diffstat (limited to 'priv/shell-completion/bash')
-rw-r--r-- | priv/shell-completion/bash/rebar | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/priv/shell-completion/bash/rebar b/priv/shell-completion/bash/rebar index a7a1426..ba87bdd 100644 --- a/priv/shell-completion/bash/rebar +++ b/priv/shell-completion/bash/rebar @@ -6,12 +6,12 @@ _rebar() COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" - sopts="-h -v -f -j" - lopts=" --help --verbose --force --jobs=" + sopts="-h -c -v -f -j" + lopts=" --help --commands --verbose --force --jobs=" cmdsnvars="analyze build_plt check_plt clean compile \ create-app create-node eunit generate \ install int_test perf_test test \ - case= force=1 jobs= suite= verbose=1 appid= target=" + case= force=1 jobs= suite= verbose=1 appid= target= template=" if [[ ${cur} == --* ]] ; then COMPREPLY=( $(compgen -W "${lopts}" -- ${cur}) ) |