diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-01-09 13:31:31 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2010-01-09 13:31:31 +0100 |
commit | 1e6d92a3a64036982368c23a592a9a49046adb04 (patch) | |
tree | 531beb499446f90c99ef3cd4bf00c02cd59565e4 | |
parent | 2ae3fd9aae47efb40acdb1a9912c547b3cba2b06 (diff) |
Fixed bash-completion to use --jobs without equal sign and removed comment
-rw-r--r-- | priv/shell-completion/bash/rebar | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/priv/shell-completion/bash/rebar b/priv/shell-completion/bash/rebar index 045efb9..36213ed 100644 --- a/priv/shell-completion/bash/rebar +++ b/priv/shell-completion/bash/rebar @@ -1,6 +1,5 @@ # bash completion for rebar -#have rebar && _rebar() { local cur prev opts @@ -8,7 +7,7 @@ _rebar() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" sopts="-h -v -f -j" - lopts=" --help --verbose --force --jobs=" + lopts=" --help --verbose --force --jobs" cmdsnvars="analyze build_plt clean compile create-app \ create-app create-node eunit generate \ int_test perf_test test \ |