Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit d7235e8

Browse files
author
Arnavion
committed
Fixed the targets of analysis manifest entries.
Before this change, all entries would use the last visited target from the previous loop, thus would not match their parent target section.
1 parent 003456a commit d7235e8

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

master/build-rust-manifest.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,10 +412,11 @@ def build_manifest(rustc_date, rustc_version, rustc_short_version,
412412
}]
413413

414414
if channel == "nightly":
415-
extensions += [{
416-
"pkg": "rust-analysis",
417-
"target": target,
418-
}]
415+
for target in target_list:
416+
extensions += [{
417+
"pkg": "rust-analysis",
418+
"target": target,
419+
}]
419420

420421
# The binaries of the 'rust' package are on the local disk.
421422
# url_and_hash_of_rust_package will try to locate them

0 commit comments

Comments
 (0)