瀏覽代碼

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>`.
pull/1033/head
Tuncer Ayaz 9 年之前
父節點
當前提交
81483f9f5d
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      priv/shell-completion/bash/rebar3

+ 2
- 2
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

Loading…
取消
儲存