From 389c5b9033f74b11f6b365d1d7ed78a6db60c14a Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 2 Sep 2016 09:39:34 +0200 Subject: [PATCH] We do not need to pass the subcommand as arg here --- bin/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/src/main.rs b/bin/src/main.rs index 19c8c319..75c0934f 100644 --- a/bin/src/main.rs +++ b/bin/src/main.rs @@ -190,7 +190,6 @@ fn main() { .stdin(Stdio::inherit()) .stdout(Stdio::inherit()) .stderr(Stdio::inherit()) - .arg(subcommand) .args(&subcommand_args[..]) .spawn() .and_then(|mut handle| handle.wait())