jvanzyl     2004/02/02 05:46:14

  Modified:    maven-mboot/src/bash maven.functions
  Log:
  o fixing problems where foo() was being used when foo is all that's needed
    as far as bash functions.
  o corrected construction of mboot classpath
  
  Revision  Changes    Path
  1.19      +6 -6      maven-components/maven-mboot/src/bash/maven.functions
  
  Index: maven.functions
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-mboot/src/bash/maven.functions,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- maven.functions   31 Jan 2004 05:28:06 -0000      1.18
  +++ maven.functions   2 Feb 2004 13:46:14 -0000       1.19
  @@ -7,9 +7,9 @@
   
   downloadMBootDependencies()
   {
  -  findAndSetMavenRepoLocal()
  +  findAndSetMavenRepoLocal
     
  -  for i in `cat ${MBOOT_HOME}/bash/deps`
  +  for i in `cat ${MBOOT_HOME}/deps`
     do
       if [ ! -f $repoLocal/$i ]
       then
  @@ -21,13 +21,13 @@
   
   createMBootClasspath()
   {
  -  findAndSetMavenRepoLocal()
  +  findAndSetMavenRepoLocal
     
  -  for i in `cat ${MBOOT_HOME}/bash/deps`
  +  for i in `cat ${MBOOT_HOME}/deps`
     do
  -    MBOOT_CP=${MBOOT_CP}:$i
  +    MBOOT_CP=${MBOOT_CP}:$repoLocal/$i
     done
  -
  +    
     if [ "$cygwin" = "true" ]
     then
       MBOOT_CP=cygpath -pu "$MBOOT_CP"
  
  
  

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

Reply via email to