Skip to content

Commit 993c7a1

Browse files
committed
Use HTTPS for clippy lint JSON
1 parent efa84cd commit 993c7a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xtask/src/codegen/gen_lint_completions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub(crate) fn generate_lint_completions() -> Result<()> {
2727
generate_feature_descriptor(&mut contents, "./target/rust/src/doc/unstable-book/src".into())?;
2828
contents.push('\n');
2929

30-
cmd!("curl http://rust-lang.github.io/rust-clippy/master/lints.json --output ./target/clippy_lints.json").run()?;
30+
cmd!("curl https://rust-lang.github.io/rust-clippy/master/lints.json --output ./target/clippy_lints.json").run()?;
3131
generate_descriptor_clippy(&mut contents, &Path::new("./target/clippy_lints.json"))?;
3232
let contents = reformat(&contents)?;
3333

0 commit comments

Comments
 (0)