Skip to content

Commit

Permalink
Rollup merge of rust-lang#51703 - kennytm:fix-51699, r=nrc
Browse files Browse the repository at this point in the history
Recognize the extra "LLVM tools versions" argument to build-manifest.

Fix rust-lang#51699.
  • Loading branch information
kennytm committed Jun 22, 2018
2 parents a39d93d + 07ad6e0 commit d41cb99
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/tools/build-manifest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ fn main() {
let cargo_release = args.next().unwrap();
let rls_release = args.next().unwrap();
let rustfmt_release = args.next().unwrap();
let _llvm_tools_vers = args.next().unwrap(); // FIXME do something with it?
let s3_address = args.next().unwrap();
let mut passphrase = String::new();
t!(io::stdin().read_to_string(&mut passphrase));
Expand Down

0 comments on commit d41cb99

Please sign in to comment.