mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-01 06:37:46 +00:00
Use Existing Path Env Var for FNM (#632)
The module for `fnm` did not set the path for Windows correctly. I fixed it by searching for the used `Path` variable (or `PATH`) and use that instead. Works now better on Windows without breaking other OSes.
This commit is contained in:
parent
c9d63946ec
commit
85da8c2fb5
1 changed files with 14 additions and 12 deletions
|
@ -1,20 +1,22 @@
|
|||
export-env {
|
||||
def fnm-env [] {
|
||||
mut env_vars = {}
|
||||
let pwsh_vars = (^fnm env --shell power-shell)
|
||||
let var_table = ($pwsh_vars
|
||||
| lines
|
||||
| parse "$env:{key} = \"{value}\""
|
||||
let pwsh_vars = (
|
||||
^fnm env --shell power-shell |
|
||||
lines |
|
||||
parse "$env:{key} = \"{value}\""
|
||||
)
|
||||
for v in $var_table {
|
||||
mut value: any = null
|
||||
if ($v.key | str downcase) == 'path' {
|
||||
$value = ($v.value | split row (char esep))
|
||||
} else {
|
||||
$value = $v.value
|
||||
}
|
||||
$env_vars = ($env_vars | insert $v.key $value)
|
||||
|
||||
# fnm-prefixed vars
|
||||
for v in ($pwsh_vars | range 1..) {
|
||||
$env_vars = ($env_vars | insert $v.key $v.value)
|
||||
}
|
||||
|
||||
# path
|
||||
let env_used_path = ($env | columns | where {str downcase | $in == "path"} | get 0)
|
||||
let path_value = ($pwsh_vars | get 0.value | split row (char esep))
|
||||
$env_vars = ($env_vars | insert $env_used_path $path_value)
|
||||
|
||||
return $env_vars
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue