Commit c5229b90 authored by mamunozgil's avatar mamunozgil
Browse files

Modified checkout directory

parent 53bb6b93
Pipeline #10748 passed with stage
in 19 seconds
...@@ -76,7 +76,7 @@ public class RepoUtil { ...@@ -76,7 +76,7 @@ public class RepoUtil {
SVNURL url = SVNURL.create(sourceUrl.getProtocol(), null, sourceUrl.getHost(), sourceUrl.getPort(), sourceUrl.getPath(), false); SVNURL url = SVNURL.create(sourceUrl.getProtocol(), null, sourceUrl.getHost(), sourceUrl.getPort(), sourceUrl.getPath(), false);
SvnOperationFactory operationFactory = new SvnOperationFactory(); SvnOperationFactory operationFactory = new SvnOperationFactory();
SvnCheckout checkout = operationFactory.createCheckout(); SvnCheckout checkout = operationFactory.createCheckout();
checkout.setSingleTarget(SvnTarget.fromFile(new File(targetPath))); checkout.setSingleTarget(SvnTarget.fromFile(new File(checkoutDirectory)));
checkout.setSource(SvnTarget.fromURL(url)); checkout.setSource(SvnTarget.fromURL(url));
checkout.setDepth(SVNDepth.INFINITY); checkout.setDepth(SVNDepth.INFINITY);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment