Unnamed repository; edit this file 'description' to name the repository.
Use last good clippy lints JSON in codegen
Laurențiu Nicola 6 weeks ago
parent a6393fb · commit e205fba
-rw-r--r--xtask/src/codegen/lints.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/codegen/lints.rs b/xtask/src/codegen/lints.rs
index 3b4c2e8da3..788ae8d6c1 100644
--- a/xtask/src/codegen/lints.rs
+++ b/xtask/src/codegen/lints.rs
@@ -83,7 +83,7 @@ pub struct LintGroup {
let lints_json = project_root().join("./target/clippy_lints.json");
cmd!(
sh,
- "curl https://rust-lang.github.io/rust-clippy/stable/lints.json --output {lints_json}"
+ "curl -f https://raw.githubusercontent.com/rust-lang/rust-clippy/21fd71e3fe6eb063cfb619ecc37b1023f5283894/beta/lints.json --output {lints_json}"
)
.run()
.unwrap();