From 07181138e5abdf78dfcd6e9100362349ec4a81e8 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 17 Mar 2025 21:53:31 +0900 Subject: sandbox/mount: pass absolute path This should never be used unless there is a good reason to, like using a file in the intermediate root. Signed-off-by: Ophestra --- sandbox/sequential.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sandbox/sequential.go') diff --git a/sandbox/sequential.go b/sandbox/sequential.go index 2a38c89b..1ffe4e7e 100644 --- a/sandbox/sequential.go +++ b/sandbox/sequential.go @@ -36,7 +36,7 @@ func (b *BindMount) String() string { return fmt.Sprintf("%q on %q flags %#x", b.Source, b.Target, b.Flags&BindWritable) } func (f *Ops) Bind(source, target string, flags int) *Ops { - *f = append(*f, &BindMount{source, target, flags | BindRecursive}) + *f = append(*f, &BindMount{source, target, flags | bindRecursive}) return f } -- cgit v1.3.1