Undo a temporary fix for a cargo bug

Fixes #2566
This commit is contained in:
Oliver Schneider 2018-03-25 08:52:00 +02:00 committed by GitHub
parent 09725c8c0d
commit bef1afac5b
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);