From b162b4a9cfd56a9bd2aaa6df8d69894e33332d34 Mon Sep 17 00:00:00 2001 From: Arthur Petukhovsky Date: Thu, 28 Dec 2023 17:10:05 +0000 Subject: [PATCH] Fix clap arg --- safekeeper/src/bin/gluegun.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/safekeeper/src/bin/gluegun.rs b/safekeeper/src/bin/gluegun.rs index 40ac64248f..f0d04d4754 100644 --- a/safekeeper/src/bin/gluegun.rs +++ b/safekeeper/src/bin/gluegun.rs @@ -70,6 +70,7 @@ struct Args { datafrom: Utf8PathBuf, /// Path to the data directory. datato: Utf8PathBuf, + #[arg(long, default_value = "false", action=ArgAction::Set)] dryrun: bool, }