We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e5196b3 + a9f3e0e commit a3d6b99Copy full SHA for a3d6b99
site/src/load.rs
@@ -295,7 +295,7 @@ fn parse_published_artifact_tag(line: &str) -> Option<String> {
295
if let Some(date) = date {
296
if let Some(name) = name {
297
// Create beta artifact in the form of beta-YYYY-MM-DD
298
- if name == "channel-rust-beta.toml" {
+ if name.starts_with("channel-rust-") && name.ends_with("-beta.toml") {
299
return Some(format!("beta-{date}"));
300
} else if let Some(capture) = VERSION_REGEX.captures(name) {
301
if let Some(version) = capture.get(1).map(|c| c.as_str()) {
0 commit comments