diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-08-16 02:28:36 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-08-16 02:28:36 +0900 |
| commit | 305c600cf5b69e16538e0142cf3d10844a671577 (patch) | |
| tree | 341ee7c5cff8e60747ad916ddd0832ecb7569c39 /internal/app | |
| parent | 8dd3e1ee5d10c150f58e3b49771d3ca847f6d4cf (diff) | |
hst: move container type to config
Container state initialisation is no longer implemented in hst so splitting them no longer makes sense.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app')
| -rw-r--r-- | internal/app/seal_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/app/seal_linux.go b/internal/app/seal_linux.go index 536bb6ad..49ef78f7 100644 --- a/internal/app/seal_linux.go +++ b/internal/app/seal_linux.go @@ -479,7 +479,7 @@ func (seal *outcome) finalise(ctx context.Context, sys sys.State, config *hst.Co // append ExtraPerms last for _, p := range config.ExtraPerms { - if p == nil { + if p == nil || p.Path == nil { continue } |
