Skip to content

Commit

Permalink
Update completion/available/maven.completion.bash
Browse files Browse the repository at this point in the history
Co-authored-by: Koichi Murase <[email protected]>
  • Loading branch information
seefood and akinomyoga authored Feb 1, 2025
1 parent 6a2d699 commit 9c78f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completion/available/maven.completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ _mvn() {
colonprefixes=${cur%"${cur##*:}"}
COMPREPLY=($(compgen -W "$cmds" -- "$cur"))
local i=${#COMPREPLY[*]}
while [ $((--i)) -ge 0 ]; do
while [ "$((--i))" -ge 0 ]; do
COMPREPLY[$i]=${COMPREPLY[$i]#"$colonprefixes"}
done

Expand Down

0 comments on commit 9c78f5c

Please sign in to comment.