Put release channel back to dev

This commit is contained in:
Max Brunsfeld 2023-11-17 14:31:49 -08:00
parent 6a22ab83cf
commit a8bea41ad8
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ lazy_static! {
} else {
include_str!("../../zed/RELEASE_CHANNEL").to_string()
};
pub static ref RELEASE_CHANNEL: ReleaseChannel = match RELEASE_CHANNEL_NAME.as_str() {
pub static ref RELEASE_CHANNEL: ReleaseChannel = match RELEASE_CHANNEL_NAME.as_str().trim() {
"dev" => ReleaseChannel::Dev,
"nightly" => ReleaseChannel::Nightly,
"preview" => ReleaseChannel::Preview,

View file

@ -1 +1 @@
nightly
dev