-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--add, --rm and -show args for config interaction #126
Conversation
shallow_backup.py
Outdated
@@ -693,26 +772,28 @@ def backup_prompt(): | |||
@click.option('-delete_config', is_flag=True, default=False, help="Remove config file.") | |||
@click.option('-v', is_flag=True, default=False, help='Display version and author information and exit.') | |||
@click.option('-destroy_backup', is_flag=True, default=False, help='Removes the backup directory and its content.') | |||
def cli(complete, dotfiles, configs, packages, fonts, old_path, new_path, remote, reinstall_packages, reinstall_configs, delete_config, v, destroy_backup): | |||
def cli(add, rm, complete, dotfiles, configs, packages, fonts, old_path, new_path, remote, reinstall_packages, reinstall_configs, delete_config, v, destroy_backup): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add -list
arg
@@ -660,6 +736,7 @@ def backup_prompt(): | |||
""" | |||
Use pick library to prompt user with choice of what to backup. | |||
""" | |||
# TODO: Implement `add` and `rm` path here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Implement add
and rm
path here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add -list arg and then this is merge-able
Fix #22 |
No description provided.