o updating to add a few more conveniences and now "site" and "clean"

replace "clean:clean" and "site:site"
  


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@314908 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-10-12 14:04:04 +00:00
parent 5a19b06f94
commit 7aa4e7eb21
1 changed files with 2 additions and 3 deletions

View File

@ -36,11 +36,10 @@ _m2_complete()
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
goals='test install package'
goals=$goals _m2_make_goals "clean" "clean"
goals=$goals _m2_make_goals "doxia" "site"
goals='clean compile test install package deploy site'
goals=$goals _m2_make_goals "eclipse" "eclipse"
goals=$goals _m2_make_goals "idea" "idea"
goals=$goals _m2_make_goals "assembly" "assembly"
goals=$goals _m2_make_goals "plexus" "app bundle-application bundle-runtime descriptor runtime service"
cur=`echo $cur | sed 's/\\\\//g'`
COMPREPLY=($(compgen -W "${goals}" ${cur} | sed 's/\\\\//g') )