evenisse 2004/04/16 05:29:47
Modified: maven-mboot/src/bash maven.functions
Log:
A little fix for cygwin
Revision Changes Path
1.35 +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.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- maven.functions 12 Apr 2004 14:40:35 -0000 1.34
+++ maven.functions 16 Apr 2004 12:29:47 -0000 1.35
@@ -168,11 +168,11 @@
(
home=`pwd`
-
+
cd $1
# If the user only want to install the POM skip the rest
- if [ "$3" == "0" ] && [ "$4" == "1" ]
+ if [ "$3" = "0" ] && [ "$4" = "1" ]
then
installPom
@@ -193,13 +193,13 @@
unitTestSourceDirectory=`grep unitTestSourceDirectory project.xml | sed -e
's/^*//;s/<unitTestSourceDirectory>//;s/<\/unitTestSourceDirectory>//;s/\${basedir}\///'`
[ -z $unitTestSourceDirectory ] && unitTestSourceDirectory=src/test/java
-
+
buildTestDest=target/test-classes
[ -d $buildDir ] && rm -rf $buildDir
-
+
echo "Building project in `pwd`"
-
+
if $cygwin = true; then
home=`cygpath -pw $home`
fi
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]