From 79b93f902b2652e0df10ac979a8466661e55f361 Mon Sep 17 00:00:00 2001 From: Nick Cameron Date: Mon, 27 Feb 2017 11:46:48 +1300 Subject: [PATCH] Fix build (on nightly) --- src/rustup/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustup/command.rs b/src/rustup/command.rs index 72e7d75bca..1c3f9d485f 100644 --- a/src/rustup/command.rs +++ b/src/rustup/command.rs @@ -135,7 +135,7 @@ fn telemetry_rustc>(mut cmd: Command, fn run_command_for_dir_without_telemetry>( mut cmd: Command, arg0: &str, args: &[S]) -> Result<()> { - cmd.args(&args); + cmd.args(args); // FIXME rust-lang/rust#32254. It's not clear to me // when and why this is needed.