This commit is contained in:
Luke Murphy 2020-10-27 08:43:36 +01:00
parent ec2b6b8214
commit 9855b54766
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ from subprocess import run
from requests import get
response = get("https://git.autonomic.zone/api/v1/orgs/coop-cloud/repos")
repos = [[p["name"], p["clone_url"]] for p in response.json()]
repos = [[p["name"], p["ssh_url"]] for p in response.json()]
clones = Path("clones").absolute()
if not exists(clones):
mkdir(clones)