build: Add REPO_OWNER and REPO_NAME
This commit is contained in:
parent
d9356fd4fa
commit
0314472620
@ -2,6 +2,10 @@ import os
|
||||
import sys
|
||||
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"):
|
||||
Repo.clone_from(repo_url, ".", branch=branch)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user