diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-10-07 21:29:16 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-10-07 21:29:16 +0900 |
| commit | 5d18af00077ae6ba8ef686d1fd93d888f69681b2 (patch) | |
| tree | eff32422fe3ef095c6a915ccb41c2a10a06990f7 /internal/app/hsu.go | |
| parent | 0e6c1a50260de141c50bb50fd3f2b2bcf9a3fe64 (diff) | |
container/fhs: move pathname constants
This allows referencing FHS pathnames without importing container.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/hsu.go')
| -rw-r--r-- | internal/app/hsu.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/app/hsu.go b/internal/app/hsu.go index 93b6bb8a..982cb51b 100644 --- a/internal/app/hsu.go +++ b/internal/app/hsu.go @@ -10,6 +10,7 @@ import ( "sync" "hakurei.app/container" + "hakurei.app/container/fhs" "hakurei.app/hst" ) @@ -45,7 +46,7 @@ func (h *Hsu) ID() (int, error) { cmd.Path = hsuPath cmd.Stderr = os.Stderr // pass through fatal messages cmd.Env = make([]string, 0) - cmd.Dir = container.FHSRoot + cmd.Dir = fhs.Root var ( p []byte exitError *exec.ExitError |
