1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
dotfile-automator/project/sync/cli.py

14 lines
345 B
Python
Raw Normal View History

import click
2015-12-05 22:14:54 +00:00
from project.utils import config, repos
2015-12-04 09:00:13 +00:00
@click.command('sync')
2015-12-05 22:14:54 +00:00
@click.option('--private/--no-private', default=False)
def cli(private):
2015-12-04 08:50:30 +00:00
if not config.has_basics():
print("You do not have all the basic requirements set.")
return 1
2015-12-05 22:14:54 +00:00
repos.clone_public_data()
if private:
repos.clone_public_data()