From 1f4d1914c8aded17625f7c0f813c97c2e26a10ed Mon Sep 17 00:00:00 2001 From: Virgil Date: Fri, 3 Apr 2026 06:04:39 +0000 Subject: [PATCH] refactor(workspace): mirror orphan aggregation in cleanup Co-Authored-By: Virgil --- workspace.go | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace.go b/workspace.go index ff6fe20..a027347 100644 --- a/workspace.go +++ b/workspace.go @@ -133,6 +133,7 @@ func (storeInstance *Store) RecoverOrphans(stateDirectory string) []*Workspace { func (storeInstance *Store) cleanUpOrphanedWorkspaces(stateDirectory string) { for _, orphanWorkspace := range storeInstance.RecoverOrphans(stateDirectory) { + _ = orphanWorkspace.Aggregate() orphanWorkspace.Discard() } } -- 2.45.3