PR: MPSCM-53

avoid an NPE in the SVN provider

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@179017 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett
2005-05-30 06:01:47 +00:00
parent 34a8aef8e1
commit 7109f45ce9

View File

@@ -92,7 +92,7 @@ public class ScmBean
}
checkoutDirectory.mkdirs();
CheckOutScmResult result = scmManager.checkOut( repository, new ScmFileSet( checkoutDirectory ), tag );
CheckOutScmResult result = scmManager.checkOut( repository, new ScmFileSet( checkoutDirectory.getAbsoluteFile() ), tag );
checkResult( result );
}