From 7e326f707845334c4773526a389892446f4aa92d Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Thu, 19 Feb 2026 21:02:58 -0800 Subject: [PATCH] tools/xtask: update rust branch name for linkcheck script (use `main`) --- tools/xtask/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xtask/src/main.rs b/tools/xtask/src/main.rs index 566791080a..b790fea171 100644 --- a/tools/xtask/src/main.rs +++ b/tools/xtask/src/main.rs @@ -93,7 +93,7 @@ fn linkcheck(args: impl Iterator) -> Result<()> { eprintln!("Running linkcheck..."); let root = root_dir(); let status = Command::new("curl") - .args(["-sSLo", "linkcheck.sh", "https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh"]) + .args(["-sSLo", "linkcheck.sh", "https://raw.githubusercontent.com/rust-lang/rust/main/src/tools/linkchecker/linkcheck.sh"]) .current_dir(&root) .status() .expect("curl should be installed");