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

10 lines
196 B
Python
Raw Normal View History

import click
2015-12-04 09:00:13 +00:00
from project.utils import config
@click.command('sync')
def cli():
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