From e4be21fd32c2ed79d77faf918ba9d97e5975fc88 Mon Sep 17 00:00:00 2001 From: Alex Vitkov Date: Mon, 14 Aug 2023 10:38:25 +0300 Subject: [PATCH] fix: --prover-name and --program-dir shorthands conflict --- crates/nargo_cli/src/cli/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nargo_cli/src/cli/mod.rs b/crates/nargo_cli/src/cli/mod.rs index 2ab34c11e40..df5eed7b297 100644 --- a/crates/nargo_cli/src/cli/mod.rs +++ b/crates/nargo_cli/src/cli/mod.rs @@ -40,7 +40,7 @@ struct NargoCli { #[derive(Args, Clone, Debug)] pub(crate) struct NargoConfig { // REMINDER: Also change this flag in the LSP test lens if renamed - #[arg(short, long, hide=true, global=true, default_value_os_t = std::env::current_dir().unwrap())] + #[arg(long, hide=true, global=true, default_value_os_t = std::env::current_dir().unwrap())] program_dir: PathBuf, }