mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 08:23: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.lib.Repository;
|
||||||
import org.eclipse.jgit.storage.file.FileRepositoryBuilder;
|
import org.eclipse.jgit.storage.file.FileRepositoryBuilder;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
@ -25,8 +26,9 @@ public class RepoUtils {
|
||||||
Path rootPath = fileUtils.getExternalFilesDirPath();
|
Path rootPath = fileUtils.getExternalFilesDirPath();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Repository repo = new FileRepository(rootPath.resolve(id).resolve(".git").toFile());
|
Repository repo = FileRepositoryBuilder.create(
|
||||||
repo.create();
|
new File(rootPath.resolve(id).resolve(".git").toString())
|
||||||
|
);
|
||||||
return repo;
|
return repo;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
// TODO-rca: handle exception
|
// TODO-rca: handle exception
|
||||||
|
|
Loading…
Reference in New Issue
Block a user