Skip to content

Commit e8a2e02

Browse files
authored
Remove duplicate assembly check in is_dirty (#292)
This commit removes a redundant check for assembly in the is_dirty method, leaving only a single, correct check for assembly. No other logic was changed.
1 parent 5fc80c9 commit e8a2e02

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

crates/compilers/src/artifact_output/configurable.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -377,9 +377,6 @@ impl ArtifactOutput for ConfigurableArtifacts {
377377
if assembly && artifact.assembly.is_none() {
378378
return Ok(true);
379379
}
380-
if assembly && artifact.assembly.is_none() {
381-
return Ok(true);
382-
}
383380
if legacy_assembly && artifact.legacy_assembly.is_none() {
384381
return Ok(true);
385382
}

0 commit comments

Comments
 (0)