Removed PythonGit dependency.
This commit is contained in:
parent
3cd6701482
commit
e7bf85de6d
|
@ -219,7 +219,8 @@ def grabExtern(extern: dict[str, Extern]):
|
|||
continue
|
||||
|
||||
print(f"Installing {extSpec}-{ext.tag} from {ext.git}...")
|
||||
git.Repo.clone_from(ext.git, extPath, branch=ext.tag, depth=1)
|
||||
shell.popen("git", "clone", "--depth", "1", "--branch",
|
||||
ext.tag, ext.git, extPath)
|
||||
|
||||
if os.path.exists(os.path.join(extPath, "project.json")):
|
||||
grabExtern(context.loadProject(extPath).extern)
|
||||
|
|
Loading…
Reference in a new issue