Fix release channel on stable

This commit is contained in:
Max Brunsfeld
2022-11-02 12:18:07 -07:00
parent 6d3bd495fc
commit 8312d974ac
+1 -1
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),
};
}