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 e8df320 commit f0edb31Copy full SHA for f0edb31
cookbook/direnv.md
@@ -22,7 +22,9 @@ $env.config = {
22
}
23
24
direnv export json | from json | default {} | load-env
25
- $env.PATH = do $env.ENV_CONVERSIONS.PATH.from_string $env.PATH
+ if 'ENV_CONVERSIONS' in ($env | columns) and 'PATH' in ($env.ENV_CONVERSIONS | columns) {
26
+ $env.PATH = do $env.ENV_CONVERSIONS.PATH.from_string $env.PATH
27
+ }
28
}]
29
30
0 commit comments