Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vporton committed Feb 4, 2025
1 parent 1abf71d commit 5dc4207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dfx/src/lib/operations/canister/deploy_canisters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ pub async fn deploy_canisters(
build_canisters(
env,
&canisters_to_load,
&if no_compile { canisters_to_build } else { Vec::new() },
&if no_compile { Vec::new() } else { canisters_to_build },
&config,
env_file.clone(),
no_compile,
Expand Down

0 comments on commit 5dc4207

Please sign in to comment.