Skip to content

Commit d41cb99

Browse files
authored
Rollup merge of #51703 - kennytm:fix-51699, r=nrc
Recognize the extra "LLVM tools versions" argument to build-manifest. Fix #51699.
2 parents a39d93d + 07ad6e0 commit d41cb99

File tree

1 file changed

+1
-0
lines changed
  • src/tools/build-manifest/src

1 file changed

+1
-0
lines changed

src/tools/build-manifest/src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ fn main() {
212212
let cargo_release = args.next().unwrap();
213213
let rls_release = args.next().unwrap();
214214
let rustfmt_release = args.next().unwrap();
215+
let _llvm_tools_vers = args.next().unwrap(); // FIXME do something with it?
215216
let s3_address = args.next().unwrap();
216217
let mut passphrase = String::new();
217218
t!(io::stdin().read_to_string(&mut passphrase));

0 commit comments

Comments
 (0)