mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-02 11:35:57 +01:00
Fix configuration path
This commit is contained in:
@@ -31,7 +31,7 @@ public class SvnV1UpdateStep implements UpdateStep {
|
|||||||
Repository repository = repositoryMetadataAccess.read(path);
|
Repository repository = repositoryMetadataAccess.read(path);
|
||||||
if (isSvnDirectory(repository)) {
|
if (isSvnDirectory(repository)) {
|
||||||
try {
|
try {
|
||||||
new SvnConfigHelper().writeRepositoryId(repository, path.toFile());
|
new SvnConfigHelper().writeRepositoryId(repository, path.resolve(RepositoryDirectoryHandler.REPOSITORIES_NATIVE_DIRECTORY).toFile());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new UpdateException("could not update repository with id " + repositoryId + " in path " + path, e);
|
throw new UpdateException("could not update repository with id " + repositoryId + " in path " + path, e);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user