Change name of command from diff to status

This commit is contained in:
Jacob Hinkle 2022-09-29 13:14:13 -04:00
parent 630231ab63
commit 1fd60cc4f7
2 changed files with 2 additions and 2 deletions

View File

@ -50,6 +50,6 @@ def main(log_level):
# main.add_command(freeze) # main.add_command(freeze)
# main.add_command(thaw) # main.add_command(thaw)
main.add_command(diff.diff_cli, name="diff") main.add_command(diff.status, name="status")
main.add_command(record.record_cli, name="record") main.add_command(record.record_cli, name="record")
main.add_command(version) main.add_command(version)

View File

@ -95,7 +95,7 @@ def print_diff(
"store is initialized there.", "store is initialized there.",
) )
@logger.catch @logger.catch
def diff_cli(show_hashes, no_color, store): def status(show_hashes, no_color, store):
"""Detect and describe changes to PATH """Detect and describe changes to PATH
PATH is a path to a file or directory inside an existing nancy store PATH is a path to a file or directory inside an existing nancy store