Fix release channel on stable

This commit is contained in:
Max Brunsfeld 2022-11-02 12:14:32 -07:00
parent 6d3bd495fc
commit 8312d974ac

View File

@ -76,7 +76,7 @@ lazy_static! {
pub static ref RELEASE_CHANNEL: ReleaseChannel = match RELEASE_CHANNEL_NAME.as_str() {
"dev" => ReleaseChannel::Dev,
"preview" => ReleaseChannel::Preview,
"stable" => ReleaseChannel::Preview,
"stable" => ReleaseChannel::Stable,
_ => panic!("invalid release channel {}", *RELEASE_CHANNEL_NAME),
};
}