mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
リポジトリ作成ロジック修正
This commit is contained in:
parent
7e262b6b57
commit
4df58a5af9
|
@ -4,6 +4,7 @@ import org.eclipse.jgit.internal.storage.file.FileRepository;
|
|||
import org.eclipse.jgit.lib.Repository;
|
||||
import org.eclipse.jgit.storage.file.FileRepositoryBuilder;
|
||||
|
||||
import java.io.File;
|
||||
import java.nio.file.Path;
|
||||
|
||||
import javax.inject.Inject;
|
||||
|
@ -25,8 +26,9 @@ public class RepoUtils {
|
|||
Path rootPath = fileUtils.getExternalFilesDirPath();
|
||||
|
||||
try {
|
||||
Repository repo = new FileRepository(rootPath.resolve(id).resolve(".git").toFile());
|
||||
repo.create();
|
||||
Repository repo = FileRepositoryBuilder.create(
|
||||
new File(rootPath.resolve(id).resolve(".git").toString())
|
||||
);
|
||||
return repo;
|
||||
} catch (Exception e) {
|
||||
// TODO-rca: handle exception
|
||||
|
|
Loading…
Reference in New Issue
Block a user