ajack       2004/06/07 06:30:16

  Modified:    python/gump/build maven.py
  Log:
  Maven was getting short changed on multiple targets. (Ant had it).
  
  Revision  Changes    Path
  1.7       +3 -1      gump/python/gump/build/maven.py
  
  Index: maven.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/build/maven.py,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- maven.py  3 Jun 2004 19:06:12 -0000       1.6
  +++ maven.py  7 Jun 2004 13:30:16 -0000       1.7
  @@ -167,7 +167,9 @@
           #cmd.addPrefixedParameter('-D','build.sysclasspath','only','=')
       
           # End with the goal...
  -        cmd.addParameter(goal)
  +        if goal: 
  +            for goalParam in goal.split():
  +                cmd.addParameter(goalParam)
       
           return cmd
     
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to