mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 09:53:43 +01:00
not resolve symlink (#6304)
This commit is contained in:
parent
47ef193600
commit
ff6868b329
@ -35,12 +35,12 @@ let-env PROMPT_MULTILINE_INDICATOR = { "::: " }
|
|||||||
# Note: The conversions happen *after* config.nu is loaded
|
# Note: The conversions happen *after* config.nu is loaded
|
||||||
let-env ENV_CONVERSIONS = {
|
let-env ENV_CONVERSIONS = {
|
||||||
"PATH": {
|
"PATH": {
|
||||||
from_string: { |s| $s | split row (char esep) | path expand }
|
from_string: { |s| $s | split row (char esep) | path expand -n }
|
||||||
to_string: { |v| $v | path expand | str collect (char esep) }
|
to_string: { |v| $v | path expand -n | str collect (char esep) }
|
||||||
}
|
}
|
||||||
"Path": {
|
"Path": {
|
||||||
from_string: { |s| $s | split row (char esep) | path expand }
|
from_string: { |s| $s | split row (char esep) | path expand -n }
|
||||||
to_string: { |v| $v | path expand | str collect (char esep) }
|
to_string: { |v| $v | path expand -n | str collect (char esep) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user