From 580a2d23519b76bb1762d8e86f02f39b284cedee Mon Sep 17 00:00:00 2001 From: Dennis Schwerdel Date: Fri, 14 Apr 2017 09:41:05 +0200 Subject: [PATCH] Fixed restore --tar --- src/cli/args.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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]'")