mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-18 00:53:31 +00:00
Merge pull request #2569 from rust-lang-nursery/oli-obk-patch-1
Undo a temporary fix for a cargo bug
This commit is contained in:
commit
d7d7c12fe1
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ pub fn main() {
|
|||
|
||||
for target in package.targets {
|
||||
let args = std::env::args()
|
||||
.skip(1)
|
||||
.skip(2)
|
||||
.filter(|a| a != "--all" && !a.starts_with("--manifest-path="));
|
||||
|
||||
let args = std::iter::once(format!("--manifest-path={}", manifest_path)).chain(args);
|
||||
|
|
Loading…
Reference in a new issue