Skip to content

Commit

Permalink
fix(cvs): avoid variable conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Aug 20, 2023
1 parent 7d2867c commit 0d145c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completions/cvs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ _comp_xfunc_cvs_compgen_roots()
[[ -r ~/.cvspass ]] && cvsroots+=($(awk '{ print $2 }' ~/.cvspass))
[[ -r CVS/Root ]] && mapfile -tO "${#cvsroots[@]}" cvsroots <CVS/Root
((${#cvsroots[@]})) &&
_comp_compgen -- -W '"${cvsroots[@]}"'
_comp_compgen -U cvsroots -- -W '"${cvsroots[@]}"'
_comp_ltrim_colon_completions "$cur"
}

Expand Down

0 comments on commit 0d145c9

Please sign in to comment.