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:
@@ -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 );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user