mirror of
https://github.com/nix-community/home-manager
synced 2024-11-17 00:29:45 +01:00
direnv: even better nushell fix
Avoid do | complete, because it swallows stderr, which can contain direnv debug output.
This commit is contained in:
parent
57e6b30d18
commit
853e7bd24f
1 changed files with 3 additions and 3 deletions
|
@ -143,9 +143,9 @@ in {
|
|||
let direnv = (
|
||||
# We want to get the stdout from direnv even if it exits with non-zero,
|
||||
# because it will have the DIRENV_ internal variables defined.
|
||||
do { ${getExe cfg.package} export json }
|
||||
| complete
|
||||
| get stdout
|
||||
do --ignore-program-errors { ${
|
||||
getExe cfg.package
|
||||
} export json }
|
||||
| from json --strict
|
||||
| default {}
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue