Skip to content

Commit f707f5f

Browse files
committed
Revert last commit + Apply flip1995 path
1 parent d241cc4 commit f707f5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.cargo/config.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[alias]
22
uitest = "test --test compile-test"
33
dev = "run --package clippy_dev --bin clippy_dev --manifest-path clippy_dev/Cargo.toml --"
4-
dev-r = "run -r --package clippy_dev --bin clippy_dev --manifest-path clippy_dev/Cargo.toml --"
54
lintcheck = "run --package lintcheck --bin lintcheck --manifest-path lintcheck/Cargo.toml -- "
65
collect-metadata = "test --test dogfood --features internal -- run_metadata_collection_lint --ignored"
76

clippy_dev/src/dogfood.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ pub fn dogfood(fix: bool, allow_dirty: bool, allow_staged: bool) {
1010
cmd.current_dir(clippy_project_root())
1111
.args(["test", "--test", "dogfood"])
1212
.args(["--features", "internal"])
13-
.args(["--", "dogfood_clippy"]);
13+
.args(["--", "dogfood_clippy"])
14+
.arg("--release");
1415

1516
let mut dogfood_args = Vec::new();
1617
if fix {

0 commit comments

Comments
 (0)