|
import os |
|
import subprocess |
|
|
|
|
|
def clone_or_pull_repository(github_url): |
|
repository_folder = "extensions" |
|
repo_name = github_url.split("/")[-1].split(".")[0] |
|
|
|
|
|
if not os.path.exists(repository_folder): |
|
os.makedirs(repository_folder) |
|
|
|
repo_path = os.path.join(repository_folder, repo_name) |
|
|
|
|
|
if os.path.exists(repo_path): |
|
yield f"Updating {github_url}..." |
|
|
|
try: |
|
pull_output = subprocess.check_output(["git", "-C", repo_path, "pull"], stderr=subprocess.STDOUT) |
|
yield "Done." |
|
return pull_output.decode() |
|
except subprocess.CalledProcessError as e: |
|
return str(e) |
|
|
|
|
|
try: |
|
yield f"Cloning {github_url}..." |
|
clone_output = subprocess.check_output(["git", "clone", github_url, repo_path], stderr=subprocess.STDOUT) |
|
yield "Done." |
|
return clone_output.decode() |
|
except subprocess.CalledProcessError as e: |
|
return str(e) |
|
|