evenisse    2004/02/11 21:11:52

  Modified:    maven-mboot/src/bash maven.functions
  Log:
  A little fix for cygwin.
  
  Revision  Changes    Path
  1.21      +2 -2      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.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- maven.functions   7 Feb 2004 16:55:04 -0000       1.20
  +++ maven.functions   12 Feb 2004 05:11:52 -0000      1.21
  @@ -30,7 +30,7 @@
       
     if [ "$cygwin" = "true" ]
     then
  -    MBOOT_CP=cygpath -pu "$MBOOT_CP"
  +    MBOOT_CP=`cygpath -pu "$MBOOT_CP"`
     fi
   }
   
  @@ -45,7 +45,7 @@
   
     if [ "$cygwin" = "true" ]
     then
  -    repoLocal=cygpath -pu "$repoLocal"
  +    repoLocal=`cygpath -pu "$repoLocal"`
     fi
   }
   
  
  
  

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

Reply via email to