evenisse 2004/05/19 01:40:38
Modified: maven-mboot/src/bash maven.functions
Log:
Fix MBOOT_CP generation for cygwin :
- convert MBOOT_CP to unix format if a user define it
- Remove MBOOT_CP conversion to unix format after initialization because we already
have it in unix format.
Revision Changes Path
1.37 +5 -5 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.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- maven.functions 16 May 2004 14:33:11 -0000 1.36
+++ maven.functions 19 May 2004 08:40:38 -0000 1.37
@@ -27,15 +27,15 @@
{
findAndSetMavenRepoLocal
- for i in `cat ${MBOOT_HOME}/deps`
- do
- MBOOT_CP=${MBOOT_CP}:$repoLocal/$i
- done
-
if [ "$cygwin" = "true" ]
then
MBOOT_CP=`cygpath -pu "$MBOOT_CP"`
fi
+
+ for i in `cat ${MBOOT_HOME}/deps`
+ do
+ MBOOT_CP=${MBOOT_CP}:$repoLocal/$i
+ done
}
findAndSetMavenRepoLocal()
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]