We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7869a8 commit 1acd067Copy full SHA for 1acd067
nu-hooks/nu-hooks/direnv/config.nu
@@ -23,4 +23,6 @@
23
}
24
25
direnv export json | from json | default {} | load-env
26
+ # Direnv outputs $PATH as a string, but nushell silently breaks if isn't a list-like table.
27
+ $env.PATH = $env.PATH | split row ':'
28
0 commit comments