From c0e860000a53f0fd44f4fa233cafa8a317623aa0 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 19 Oct 2025 02:58:46 +0900 Subject: internal/app: remove spfinal This no longer needs to be an independent outcomeOp since spFilesystemOp is moved late. Signed-off-by: Ophestra --- internal/app/outcome.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/app/outcome.go') 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)) -- cgit v1.3.1