From 699c19e972a3cbcc714403aedffcb5ff74386cfc Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 19 Oct 2025 03:53:20 +0900 Subject: 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 --- cmd/hpkg/app.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/hpkg/app.go') 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 } -- cgit v1.3.1