diff options
| author | bors <bors@rust-lang.org> | 2022-04-16 10:22:08 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-04-16 10:22:08 +0000 |
| commit | 0f4f9ecdb3d4db785b5d96ef5c61454e079b12c4 (patch) | |
| tree | 541e24cfa4f934a4789730e80c04860c69205aa9 | |
| parent | b2959dbf6960e6133654ad13b5378372fc38f3f5 (diff) | |
| parent | 5b35bd9c3e2c4c05304ad54a1ba4164e2740a7b5 (diff) | |
| download | rust-0f4f9ecdb3d4db785b5d96ef5c61454e079b12c4.tar.gz rust-0f4f9ecdb3d4db785b5d96ef5c61454e079b12c4.zip | |
Auto merge of #8709 - matthiaskrgr:lintcheckfix, r=llogiq
lintcheck: fix --fix looks like --allow-no-vcs does no longer exist(?) changelog: none
| -rw-r--r-- | lintcheck/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lintcheck/src/main.rs b/lintcheck/src/main.rs index 491527c95f8..816efbdaedf 100644 --- a/lintcheck/src/main.rs +++ b/lintcheck/src/main.rs @@ -306,7 +306,7 @@ impl Crate { let shared_target_dir = clippy_project_root().join("target/lintcheck/shared_target_dir"); let mut args = if fix { - vec!["--fix", "--allow-no-vcs", "--"] + vec!["--fix", "--"] } else { vec!["--", "--message-format=json", "--"] }; |
