1
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
2015-12-04 09:00:13 +00:00

10 lines
196 B
Python

import click
from project.utils import config
@click.command('sync')
def cli():
if not config.has_basics():
print("You do not have all the basic requirements set.")
return 1