A little fix for cygwin.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162566 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Emmanuel Venisse 2004-02-12 05:11:52 +00:00
parent 68eea5fd4d
commit bb5bfb01b5
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ createMBootClasspath()
if [ "$cygwin" = "true" ]
then
MBOOT_CP=cygpath -pu "$MBOOT_CP"
MBOOT_CP=`cygpath -pu "$MBOOT_CP"`
fi
}
@ -45,7 +45,7 @@ findAndSetMavenRepoLocal()
if [ "$cygwin" = "true" ]
then
repoLocal=cygpath -pu "$repoLocal"
repoLocal=`cygpath -pu "$repoLocal"`
fi
}