o cygwin stuff is breaking build on linux

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162808 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-06-19 16:24:56 +00:00
parent 403a1c570f
commit 9c66979376
1 changed files with 6 additions and 6 deletions

View File

@ -6,9 +6,9 @@ home=`pwd`
cp=`pwd`/../maven-core-it-verifier/target/maven-core-it-verifier-1.0.jar
if $cygwin; then
cp=`cygpath -pw "$cp"`
fi
#if $cygwin; then
# cp=`cygpath -pw "$cp"`
#fi
if [ ! -f $cp ]
then
@ -49,9 +49,9 @@ do
basedir=`pwd`
if $cygwin; then
basedir=`cygpath -pw "$basedir"`
fi
#if $cygwin; then
# basedir=`cygpath -pw "$basedir"`
#fi
java -cp "$cp" $verifier "$basedir"
)