diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-10-19 02:58:46 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-10-19 02:58:46 +0900 |
| commit | c0e860000a53f0fd44f4fa233cafa8a317623aa0 (patch) | |
| tree | 40f523a33f55c4181190eaad47f79e88f8df5159 /internal/app/outcome.go | |
| parent | d87020f0ca6897fbc1ba815fc1d9d048795e8749 (diff) | |
internal/app: remove spfinal
This no longer needs to be an independent outcomeOp since spFilesystemOp is moved late.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/outcome.go')
| -rw-r--r-- | internal/app/outcome.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/app/outcome.go b/internal/app/outcome.go index 0feee237..30fd38ff 100644 --- a/internal/app/outcome.go +++ b/internal/app/outcome.go @@ -159,7 +159,7 @@ type outcomeStateSys struct { // Copied from [hst.Config]. Safe for read by spWaylandOp.toSystem only. directWayland bool - // Copied header from [hst.Config]. Safe for read by spFinalOp.toSystem only. + // Copied header from [hst.Config]. Safe for read by spFilesystemOp.toSystem only. extraPerms []hst.ExtraPermConfig // Copied address from [hst.Config]. Safe for read by spDBusOp.toSystem only. sessionBus, systemBus *hst.BusConfig @@ -282,8 +282,8 @@ func (state *outcomeStateSys) toSystem() error { &spPulseOp{}, &spDBusOp{}, + // must run last &spFilesystemOp{}, - spFinalOp{}, } state.Shim.Ops = make([]outcomeOp, 0, len(ops)) |
