From 9a328319dd792bee0b074462160eaf9464b054c4 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Wed, 15 Apr 2020 06:41:37 +0200 Subject: [PATCH] pxar extract: remove pattern from arg_param, add target instead --- src/bin/pxar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pxar.rs b/src/bin/pxar.rs index 9205c7bc..bcbce4ff 100644 --- a/src/bin/pxar.rs +++ b/src/bin/pxar.rs @@ -504,7 +504,7 @@ fn main() { .completion_cb("source", tools::complete_file_name) ) .insert("extract", CliCommand::new(&API_METHOD_EXTRACT_ARCHIVE) - .arg_param(&["archive", "pattern"]) + .arg_param(&["archive", "target"]) .completion_cb("archive", tools::complete_file_name) .completion_cb("target", tools::complete_file_name) .completion_cb("files-from", tools::complete_file_name)