diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-10-19 03:53:20 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-10-19 04:11:38 +0900 |
| commit | 699c19e972a3cbcc714403aedffcb5ff74386cfc (patch) | |
| tree | 4f279d0e917d21dc8e40409691b93bbbf44c7667 /cmd/hpkg | |
| parent | b5b30aea2eca15b8a0c9e01d6e3d0e844c99890c (diff) | |
hst/container: optional runtime and tmpdir sharing
Sharing and persisting these directories do not always make sense. Make it optional here.
Closes #16.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd/hpkg')
| -rw-r--r-- | cmd/hpkg/app.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/hpkg/app.go b/cmd/hpkg/app.go index 350eaaa7..17179dce 100644 --- a/cmd/hpkg/app.go +++ b/cmd/hpkg/app.go @@ -130,6 +130,7 @@ func (app *appInfo) toHst(pathSet *appPathSet, pathname *check.Absolute, argv [] if app.Multiarch { config.Container.Flags |= hst.FMultiarch } + config.Container.Flags |= hst.FShareRuntime | hst.FShareTmpdir return config } |
