From fedc51a2ebb97029aba965269e2c72d82cd50b64 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Wed, 1 Feb 2023 22:14:08 -0600 Subject: [PATCH] Also re-download bootstrap if `build_helper` changes --- src/bootstrap/bin/bootstrap-shim.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/bootstrap/bin/bootstrap-shim.rs b/src/bootstrap/bin/bootstrap-shim.rs index d0d044d2373a8..91990bd795e14 100644 --- a/src/bootstrap/bin/bootstrap-shim.rs +++ b/src/bootstrap/bin/bootstrap-shim.rs @@ -25,5 +25,9 @@ fn main() { } fn last_modified_bootstrap_commit(config: &MinimalConfig) -> Option { - config.last_modified_commit(&["src/bootstrap"], "download-bootstrap", true) + config.last_modified_commit( + &["src/bootstrap", "src/tools/build_helper"], + "download-bootstrap", + true, + ) }