Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 2.0.8
-
Fix Version/s: None
-
Component/s: Documentation: Guides
-
Labels:None
-
Number of attachments :
Description
The Mini Guide "Guide to Maven 2.x auto completion using BASH" at http://maven.apache.org/guides/mini/guide-bash-m2-completion.html contains an extra space in one line of the script which caused it to fail.
The line
cur=${ COMP_WORDS[COMP_CWORD]}
should be
cur=${COMP_WORDS[COMP_CWORD]}
i.e. no space between "${" and "COMP_WORDS"
Works perfectly otherwise! Thanks.
fixed in rev 608553.
Thanks.