Fix configuration path

This commit is contained in:
Rene Pfeuffer
2019-07-03 13:06:11 +02:00
parent ab62b121d7
commit 61b51f0063

View File

@@ -31,7 +31,7 @@ public class SvnV1UpdateStep implements UpdateStep {
Repository repository = repositoryMetadataAccess.read(path);
if (isSvnDirectory(repository)) {
try {
new SvnConfigHelper().writeRepositoryId(repository, path.toFile());
new SvnConfigHelper().writeRepositoryId(repository, path.resolve(RepositoryDirectoryHandler.REPOSITORIES_NATIVE_DIRECTORY).toFile());
} catch (IOException e) {
throw new UpdateException("could not update repository with id " + repositoryId + " in path " + path, e);
}