windows: Don't load login shell environment (#22681)
I'm consistently getting the following error on startup: ``` 2025-01-05T14:45:43.4602865+01:00 [ERROR] SHELL environment variable is not assigned so we can't source login environment variables Caused by: environment variable not found ``` The source function, `load_login_shell_environment`, assumes a UNIX environment and should therefore not be called on Windows. (Unless you are using git bash?) Release Notes: * N/A
This commit is contained in:
parent
c53615ff61
commit
bb6e8053d3
2 changed files with 9 additions and 7 deletions
|
@ -6,7 +6,7 @@ pub mod serde;
|
|||
#[cfg(any(test, feature = "test-support"))]
|
||||
pub mod test;
|
||||
|
||||
use anyhow::{anyhow, Context as _, Result};
|
||||
use anyhow::Result;
|
||||
use futures::Future;
|
||||
use itertools::Either;
|
||||
use regex::Regex;
|
||||
|
@ -23,6 +23,9 @@ use std::{
|
|||
};
|
||||
use unicase::UniCase;
|
||||
|
||||
#[cfg(unix)]
|
||||
use anyhow::{anyhow, Context as _};
|
||||
|
||||
pub use take_until::*;
|
||||
|
||||
#[macro_export]
|
||||
|
@ -195,6 +198,7 @@ pub fn load_shell_from_passwd() -> Result<()> {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
#[cfg(unix)]
|
||||
pub fn load_login_shell_environment() -> Result<()> {
|
||||
let marker = "ZED_LOGIN_SHELL_START";
|
||||
let shell = env::var("SHELL").context(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue