diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-10-26 03:39:51 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-10-26 03:41:19 +0900 |
| commit | 4a463b7f032961323baa0c5cc4bac0594a90ec42 (patch) | |
| tree | 551c5b5cc246d5bd1bd5cfbe4ee2121cebedf80e /internal/app/process.go | |
| parent | dacd9550e0f696d8e6723a304ba056502109201f (diff) | |
internal/app/state: use absolute pathnames
This is less error-prone and fits better into internal/app which already uses check.Absolute for all pathnames.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/process.go')
| -rw-r--r-- | internal/app/process.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/app/process.go b/internal/app/process.go index a0950c27..7873109a 100644 --- a/internal/app/process.go +++ b/internal/app/process.go @@ -221,7 +221,7 @@ func (k *outcome) main(msg message.Msg) { ms.fatal("cannot commit system setup:", err) } ms.uintptr |= mainNeedsRevert - ms.store = state.NewMulti(msg, k.state.sc.RunDirPath.String()) + ms.store = state.NewMulti(msg, k.state.sc.RunDirPath) ctx, cancel := context.WithCancel(k.ctx) defer cancel() |
