From 71059a4c264bae65ded42a5b53fb7a8844083841 Mon Sep 17 00:00:00 2001 From: onur-ozkan Date: Tue, 3 Sep 2024 08:13:57 +0300 Subject: [PATCH] don't remove bootstrap on stage0 bump Signed-off-by: onur-ozkan --- src/bootstrap/bootstrap.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 71f69e03a9fee..1be92bd9b1131 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -616,12 +616,6 @@ def download_toolchain(self): print('Choosing a pool size of', pool_size, 'for the unpacking of the tarballs') p = Pool(pool_size) try: - # FIXME: A cheap workaround for https://github.com/rust-lang/rust/issues/125578, - # remove this once the issue is closed. - bootstrap_out = self.bootstrap_out() - if os.path.exists(bootstrap_out): - shutil.rmtree(bootstrap_out) - p.map(unpack_component, tarballs_download_info) finally: p.close()