From 790635afec389a15009fe2c05731c6a66238902c Mon Sep 17 00:00:00 2001 From: Wil Carmon Date: Sun, 15 Sep 2024 23:34:47 -0400 Subject: [PATCH] Update config.rs allow cloning `GroupConfig` --- fclones/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fclones/src/config.rs b/fclones/src/config.rs index 78a4452..3410835 100644 --- a/fclones/src/config.rs +++ b/fclones/src/config.rs @@ -133,7 +133,7 @@ pub struct Parallelism { } // Configuration of the `group` subcommand -#[derive(clap::Args, Debug, Default)] +#[derive(clap::Args, Clone, Debug, Default)] pub struct GroupConfig { /// Write the report to a file instead of the standard output #[arg(short = 'o', long, value_name = "PATH")]