Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexD10S committed Oct 31, 2024
1 parent d0d93c3 commit f96774a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/pop-cli/src/commands/up/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ pub fn has_contract_been_built(path: Option<&Path>) -> bool {
Err(_) => return false,
};
let contract_name = manifest.package().name();
project_path.join("target/ink").exists()
&& project_path.join(format!("target/ink/{}.contract", contract_name)).exists()
project_path.join("target/ink").exists() &&
project_path.join(format!("target/ink/{}.contract", contract_name)).exists()
}

#[cfg(test)]
Expand Down

0 comments on commit f96774a

Please sign in to comment.