diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2016-01-25 22:52:57 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2016-01-25 22:52:57 +0100 |
commit | 81483f9f5dc12adafc45fc549f536c1e18165f99 (patch) | |
tree | 013836720e009e28b2f03c6520edd208235554e1 /priv | |
parent | 084fd3116a9e783e061184a768fd4eec9b255582 (diff) |
bash completion: fix error introduced in cf66dfd6
cf66dfd6ba introduced a syntax error in the modified lopts string.
Without the fix, you'll provoke a shell error when trying to complete
`rebar3 ct --<something>`.
Diffstat (limited to 'priv')
-rw-r--r-- | priv/shell-completion/bash/rebar3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/priv/shell-completion/bash/rebar3 b/priv/shell-completion/bash/rebar3 index 771297c..49427ef 100644 --- a/priv/shell-completion/bash/rebar3 +++ b/priv/shell-completion/bash/rebar3 @@ -74,8 +74,8 @@ _rebar3() --multiply_timetraps \ --scale_timetraps \ --create_priv_dir \ - --verbose" \ - --auto_compile + --verbose \ + --auto_compile" elif [[ ${prev} == deps ]] ; then : elif [[ ${prev} == dialyzer ]] ; then |