diff --git a/src/cli/args.rs b/src/cli/args.rs index 88915c2..2dba5e0 100644 --- a/src/cli/args.rs +++ b/src/cli/args.rs @@ -316,8 +316,7 @@ pub fn parse() -> Result<(LogLevel, Arguments), ErrorCode> { .arg(Arg::from_usage("--tar 'Restore in form of a tar file'")) .arg(Arg::from_usage(" 'The backup/subtree path, [repository]::backup[::subtree]'") .validator(|val| validate_repo_path(val, true, Some(true), None))) - .arg(Arg::from_usage(" 'Destination path for backup'") - .validator(validate_existing_path))) + .arg(Arg::from_usage(" 'Destination path for backup'"))) .subcommand(SubCommand::with_name("remove").aliases(&["rm", "delete", "del"]).about("Remove a backup or a subtree") .arg(Arg::from_usage("-f --force 'Remove multiple backups in a backup folder'")) .arg(Arg::from_usage(" 'The backup/subtree path, [repository]::backup[::subtree]'")