mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-08 10:07:27 +00:00
Call non-git beta builds simply x.y.z-beta
We can't use git commands to compute a prerelease version when we're building from a source tarball, or if git is otherwise unavailable. We'll just call such builds `x.y.z-beta`, without a prerelease.
This commit is contained in:
parent
9fd7da904b
commit
a76bb8806a
@ -776,7 +776,11 @@ impl Build {
|
|||||||
fn release(&self, num: &str) -> String {
|
fn release(&self, num: &str) -> String {
|
||||||
match &self.config.channel[..] {
|
match &self.config.channel[..] {
|
||||||
"stable" => num.to_string(),
|
"stable" => num.to_string(),
|
||||||
"beta" => format!("{}-beta.{}", num, self.beta_prerelease_version()),
|
"beta" => if self.rust_info.is_git() {
|
||||||
|
format!("{}-beta.{}", num, self.beta_prerelease_version())
|
||||||
|
} else {
|
||||||
|
format!("{}-beta", num)
|
||||||
|
},
|
||||||
"nightly" => format!("{}-nightly", num),
|
"nightly" => format!("{}-nightly", num),
|
||||||
_ => format!("{}-dev", num),
|
_ => format!("{}-dev", num),
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user