Remove extra space in zed --version string for non-stable (#24254)

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2025-02-05 00:25:03 -07:00 committed by GitHub
parent 5a955e208c
commit fef567bb49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -343,7 +343,7 @@ mod linux {
if *RELEASE_CHANNEL == "stable" {
"".to_string()
} else {
format!(" {} ", *RELEASE_CHANNEL)
format!("{} ", *RELEASE_CHANNEL)
},
option_env!("RELEASE_VERSION").unwrap_or_default(),
self.0.display(),