about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-04-16 10:22:08 +0000
committerbors <bors@rust-lang.org>2022-04-16 10:22:08 +0000
commit0f4f9ecdb3d4db785b5d96ef5c61454e079b12c4 (patch)
tree541e24cfa4f934a4789730e80c04860c69205aa9
parentb2959dbf6960e6133654ad13b5378372fc38f3f5 (diff)
parent5b35bd9c3e2c4c05304ad54a1ba4164e2740a7b5 (diff)
downloadrust-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.rs2
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", "--"]
         };