Bootstrap using set_times
on a read-only file
#127849
Labels
A-contributor-roadblock
Area: Makes things more difficult for new contributors to rust itself
C-bug
Category: This is a bug.
O-windows
Operating system: Windows
T-bootstrap
Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
@jieyouxu noticed that bootstrap is now failing on a clean Windows build:
This fails due to the file being opened as read-only:
rust/src/bootstrap/src/core/download.rs
Lines 709 to 711 in cb12b52
This could be fixed using windows specific permissions but it'd be simpler to just use
OpenOptions
withwrite(true)
.The text was updated successfully, but these errors were encountered: