2021-06-05 05:55:05 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# Usage: ./clone-all-apps.py
|
|
|
|
#
|
|
|
|
# Clone all available apps into ~/.abra/apps using ssh:// URLs
|
|
|
|
|
|
|
|
from abralib import clone_all_apps, get_repos_json
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
"""Run the script."""
|
|
|
|
repos_json = get_repos_json()
|
2021-06-05 05:58:24 +00:00
|
|
|
clone_all_apps(repos_json, ssh=True)
|
2021-06-05 05:55:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
main()
|