PATH variable is not converted to list in Nushell #3589
-
Describe the bug Line 80 in 78c41b6 it sets $env.PATH as a simple string instead of list<string> which Nushell uses for $env.PATH by default.
It doesn't break anything for Mise, but for Nushell if It looks like it can be solved by handling updates for if $var.name == "PATH" {
$env.PATH = ($var.value | split row (char esep))
} After this both Mise and Nushell seem to be working fine. I can prepare a PR with the fix. To Reproduce
Expected behavior
Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This appears to be the same issue as #2319 :) |
Beta Was this translation helpful? Give feedback.
-
Please see #3592 for a PR with a fix. :) |
Beta Was this translation helpful? Give feedback.
Please see #3592 for a PR with a fix. :)