소스 검색

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

불러오는 중...
취소
저장