diff options
Diffstat (limited to 'internal/outcome/shim.go')
| -rw-r--r-- | internal/outcome/shim.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/outcome/shim.go b/internal/outcome/shim.go index d2706c8b..b2074928 100644 --- a/internal/outcome/shim.go +++ b/internal/outcome/shim.go @@ -20,6 +20,7 @@ import ( "hakurei.app/ext" "hakurei.app/fhs" "hakurei.app/hst" + "hakurei.app/internal/params" "hakurei.app/internal/pipewire" "hakurei.app/message" ) @@ -197,7 +198,7 @@ func shimEntrypoint(k syscallDispatcher) { if errors.Is(err, syscall.EBADF) { k.fatal("invalid config descriptor") } - if errors.Is(err, container.ErrReceiveEnv) { + if errors.Is(err, params.ErrReceiveEnv) { k.fatal(shimEnv + " not set") } |
