mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 00:13:21 +01:00
Remove SHLVL update platform limit
This commit is contained in:
parent
4874a02279
commit
06b5dd8f89
@ -281,8 +281,6 @@ fn main() -> Result<()> {
|
||||
);
|
||||
|
||||
// Add SHLVL if interactive
|
||||
#[cfg(not(windows))]
|
||||
{
|
||||
if engine_state.is_interactive {
|
||||
let mut shlvl = engine_state
|
||||
.get_env_var("SHLVL")
|
||||
@ -291,7 +289,6 @@ fn main() -> Result<()> {
|
||||
shlvl += 1;
|
||||
engine_state.add_env_var("SHLVL".to_string(), Value::int(shlvl, Span::unknown()));
|
||||
}
|
||||
}
|
||||
|
||||
if parsed_nu_cli_args.no_std_lib.is_none() {
|
||||
load_standard_library(&mut engine_state)?;
|
||||
|
Loading…
Reference in New Issue
Block a user