mirror of https://github.com/apache/maven.git
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:
parent
68eea5fd4d
commit
bb5bfb01b5
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue