helper/bwrap: fix typo in --dir config builder

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2024-12-27 15:34:43 +09:00
parent 0a2aa5823b
commit aef847b5ae

View File

@@ -106,7 +106,7 @@ func (c *Config) Mqueue(dest string) *Config {
// Dir create dir in sandbox
// (--dir DEST)
func (c *Config) Dir(dest string) *Config {
c.Filesystem = append(c.Filesystem, &stringF{stringArgs[Dir], dest})
c.Filesystem = append(c.Filesystem, &stringF{awkwardArgs[Dir], dest})
return c
}