Skip to content

Commit

Permalink
fix: replace by the root value to match bash behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
doubleailes committed Sep 9, 2024
1 parent e66c0cc commit aff3a2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/spfs/src/runtime/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,8 @@ impl Config {
csh_startup_file: root.join(Self::CSH_STARTUP_FILE),
csh_expect_file: Self::default_csh_expect_file(),
ps_startup_file: temp_dir().join(Self::PS_STARTUP_FILE),
nu_env_file: temp_dir().join(Self::NU_ENV_FILE),
nu_config_file: temp_dir().join(Self::NU_CONFIG_FILE),
nu_env_file: root.join(Self::NU_ENV_FILE),
nu_config_file: root.join(Self::NU_CONFIG_FILE),
runtime_dir: Some(root),
tmpfs_size,
mount_namespace: None,
Expand Down

0 comments on commit aff3a2b

Please sign in to comment.