mirror of https://github.com/apache/maven.git
A little fix for use it on windows
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162806 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f00f23e685
commit
581fa34537
|
@ -98,7 +98,14 @@ public class Verifier
|
|||
}
|
||||
else
|
||||
{
|
||||
expectedFile = new File( basedir, line );
|
||||
if ( line.indexOf( ":" ) > 0 ) //windows
|
||||
{
|
||||
expectedFile = new File( line );
|
||||
}
|
||||
else
|
||||
{
|
||||
expectedFile = new File( basedir, line );
|
||||
}
|
||||
}
|
||||
|
||||
if ( !expectedFile.exists() )
|
||||
|
|
Loading…
Reference in New Issue