diff --git a/src/cmd_args.rs b/src/cmd_args.rs index e7ce004..1e42485 100644 --- a/src/cmd_args.rs +++ b/src/cmd_args.rs @@ -153,8 +153,11 @@ pub(crate) enum BackupSubCommands { List {}, /// Record xdbm that the backup with the name has finished right now. Done { + /// Name of the backup config. name: String, - succeeded: bool, + /// Result of the backup + exit_status: u64, + /// Optional log or note about the backup execution. #[arg(short, long)] log: Option, },