build: Add REPO_OWNER and REPO_NAME

This commit is contained in:
Andrew Ridgway (aider) 2024-11-23 21:52:17 +10:00
parent d9356fd4fa
commit 0314472620

View File

@ -2,6 +2,10 @@ import os
import sys import sys
from git import Repo from git import Repo
# Set these variables accordingly
REPO_OWNER = "your_repo_owner"
REPO_NAME = "your_repo_name"
def clone_repo(repo_url, branch="main"): def clone_repo(repo_url, branch="main"):
Repo.clone_from(repo_url, ".", branch=branch) Repo.clone_from(repo_url, ".", branch=branch)