Extract variable

This commit is contained in:
Nilstrieb 2023-04-16 21:36:05 +02:00
parent fa4639195c
commit 46a25581aa

View File

@ -438,11 +438,12 @@ class RustBuild(object):
tarball_suffix = '.tar.gz' if lzma is None else '.tar.xz' tarball_suffix = '.tar.gz' if lzma is None else '.tar.xz'
toolchain_suffix = "{}-{}{}".format(rustc_channel, self.build, tarball_suffix)
tarballs_to_download = [ tarballs_to_download = [
("rust-std-{}-{}{}".format(rustc_channel, self.build, tarball_suffix), ("rust-std-{}".format(toolchain_suffix), "rust-std-{}".format(self.build)),
"rust-std-{}".format(self.build)), ("rustc-{}".format(toolchain_suffix), "rustc"),
("rustc-{}-{}{}".format(rustc_channel, self.build, tarball_suffix), "rustc"), ("cargo-{}".format(toolchain_suffix), "cargo"),
("cargo-{}-{}{}".format(rustc_channel, self.build, tarball_suffix), "cargo"),
] ]
for filename, pattern in tarballs_to_download: for filename, pattern in tarballs_to_download: