Ver a proveniência

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 há 9 anos
ascendente
cometimento
81483f9f5d
1 ficheiros alterados com 2 adições e 2 eliminações
  1. +2
    -2
      priv/shell-completion/bash/rebar3

+ 2
- 2
priv/shell-completion/bash/rebar3 Ver ficheiro

@ -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

Carregando…
Cancelar
Guardar