Skip to content

Commit 2fff780

Browse files
committed
rustbuild: Don't package libstd twice
Looks like the packaging step for the standard library was happening twice on CI, but it only needs to happen once! The `Analysis` packaging step accidentally packaged `Std` instead of relying on compiling `Std`, which meant that we ended up packaging it twice erroneously.
1 parent 9b9d2af commit 2fff780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/dist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ impl Step for Analysis {
762762
return distdir(builder).join(format!("{}-{}.tar.gz", name, target));
763763
}
764764

765-
builder.ensure(Std { compiler, target });
765+
builder.ensure(compile::Std { compiler, target });
766766

767767
let image = tmpdir(builder).join(format!("{}-{}-image", name, target));
768768

0 commit comments

Comments
 (0)