fix: cm-cli fix command

This commit is contained in:
Dr.Lt.Data
2024-04-20 00:59:42 +09:00
parent e98645caf2
commit b3636c1217
2 changed files with 7 additions and 3 deletions

View File

@@ -178,6 +178,7 @@ if not (len(sys.argv) == 2 and sys.argv[1] == 'save-snapshot') and len(sys.argv)
f" save-snapshot\n"
f" restore-snapshot <snapshot>\n"
f" cli-only-mode [enable|disable]\n"
f" restore-dependencies -- NOT YET\n"
f" clear\n")
exit(-1)
@@ -456,6 +457,9 @@ elif op == 'save-snapshot':
elif op == 'restore-snapshot':
restore_snapshot(sys.argv[2])
elif op == 'restore-dependencies':
print(f"TODO: NOT YET IMPLEMENTED")
elif op == 'clear':
cancel()