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

Fixed the targets of analysis manifest entries. #153

Merged
merged 1 commit into from
Feb 4, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions master/build-rust-manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,10 +412,11 @@ def build_manifest(rustc_date, rustc_version, rustc_short_version,
}]

if channel == "nightly":
extensions += [{
"pkg": "rust-analysis",
"target": target,
}]
for target in target_list:
extensions += [{
"pkg": "rust-analysis",
"target": target,
}]

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