From 7e3d2e5b415e07b001e8519b0cf0f7d4c78713f1 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Wed, 15 Apr 2020 06:31:46 +0200 Subject: [PATCH] pxar create: remove exclude from arg_param --- 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 7ab80bf7..9205c7bc 100644 --- a/src/bin/pxar.rs +++ b/src/bin/pxar.rs @@ -499,7 +499,7 @@ fn main() { let cmd_def = CliCommandMap::new() .insert("create", CliCommand::new(&API_METHOD_CREATE_ARCHIVE) - .arg_param(&["archive", "source", "exclude"]) + .arg_param(&["archive", "source"]) .completion_cb("archive", tools::complete_file_name) .completion_cb("source", tools::complete_file_name) )