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:
Oliver Schneider 2018-03-25 10:41:39 +02:00 committed by GitHub
commit d7d7c12fe1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);