Skip to content

Commit

Permalink
fix(nargo)!: Remove -p short flag from the --program-dir flag (#2300
Browse files Browse the repository at this point in the history
)
  • Loading branch information
alexvitkov authored Aug 14, 2023
1 parent edded24 commit cc2af74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/nargo_cli/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down

0 comments on commit cc2af74

Please sign in to comment.