Support HTTPS/SSH cloning

This commit is contained in:
decentral1se
2021-06-05 07:58:24 +02:00
parent 7b0fb50e7f
commit 76d5a1026a
2 changed files with 6 additions and 3 deletions

View File

@ -10,7 +10,7 @@ from abralib import clone_all_apps, get_repos_json
def main():
"""Run the script."""
repos_json = get_repos_json()
clone_all_apps(repos_json)
clone_all_apps(repos_json, ssh=True)
main()