From 9c669793767513bad28c91375883a279d46bea7b Mon Sep 17 00:00:00 2001 From: Jason van Zyl Date: Sat, 19 Jun 2004 16:24:56 +0000 Subject: [PATCH] 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 --- maven-core-it/maven-core-it.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maven-core-it/maven-core-it.sh b/maven-core-it/maven-core-it.sh index 764250d735..d8dda138c9 100755 --- a/maven-core-it/maven-core-it.sh +++ b/maven-core-it/maven-core-it.sh @@ -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" )