not resolve symlink (#6304)

This commit is contained in:
WindSoilder 2022-08-12 19:17:31 +08:00 committed by GitHub
parent 47ef193600
commit ff6868b329
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,12 +35,12 @@ let-env PROMPT_MULTILINE_INDICATOR = { "::: " }
# Note: The conversions happen *after* config.nu is loaded
let-env ENV_CONVERSIONS = {
"PATH": {
from_string: { |s| $s | split row (char esep) | path expand }
to_string: { |v| $v | path expand | str collect (char esep) }
from_string: { |s| $s | split row (char esep) | path expand -n }
to_string: { |v| $v | path expand -n | str collect (char esep) }
}
"Path": {
from_string: { |s| $s | split row (char esep) | path expand }
to_string: { |v| $v | path expand | str collect (char esep) }
from_string: { |s| $s | split row (char esep) | path expand -n }
to_string: { |v| $v | path expand -n | str collect (char esep) }
}
}