ソースを参照

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 \ --multiply_timetraps \
--scale_timetraps \ --scale_timetraps \
--create_priv_dir \ --create_priv_dir \
--verbose" \
--auto_compile
--verbose \
--auto_compile"
elif [[ ${prev} == deps ]] ; then elif [[ ${prev} == deps ]] ; then
: :
elif [[ ${prev} == dialyzer ]] ; then elif [[ ${prev} == dialyzer ]] ; then

読み込み中…
キャンセル
保存