Skip to content

Commit

Permalink
Undo a temporary fix for a cargo bug
Browse files Browse the repository at this point in the history
Fixes #2566
  • Loading branch information
oli-obk authored Mar 25, 2018
1 parent 09725c8 commit bef1afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit bef1afa

Please sign in to comment.