Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Aug 15, 2023
1 parent 65b36ba commit 2c0c1ec
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 @@ -66,7 +66,7 @@ pub(crate) fn start_cli() -> eyre::Result<()> {

// If the provided `program_dir` is relative, make it absolute by joining it to the current directory.
if !config.program_dir.is_absolute() {
config.program_dir = std::env::current_dir().unwrap().join(config.program_dir)
config.program_dir = std::env::current_dir().unwrap().join(config.program_dir);
}

// Search through parent directories to find package root if necessary.
Expand Down

0 comments on commit 2c0c1ec

Please sign in to comment.