direnv: even better nushell fix

Avoid do | complete, because it swallows stderr, which can contain
direnv debug output.
This commit is contained in:
K900 2024-09-26 23:03:30 +03:00 committed by GitHub
parent 57e6b30d18
commit 853e7bd24f
Failed to generate hash of commit

View file

@ -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 {}
)