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

Commit 154d0b9

Browse files
authored
Merge pull request #153 from Arnavion/fix-150
Fixed the targets of analysis manifest entries.
2 parents 003456a + d7235e8 commit 154d0b9

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)