aboutsummaryrefslogtreecommitdiffhomepage
path: root/helper/bwrap
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2024-12-27 15:34:43 +0900
committerOphestra <cat@gensokyo.uk>2024-12-27 15:34:43 +0900
commitaef847b5ae055d5f89e00c19bc341b7464164139 (patch)
tree170bee27bfa0a54199cd73d8465417d6128c45ea /helper/bwrap
parent0a2aa5823bb0a9f04bd910d63b6ef934c6d4f533 (diff)
helper/bwrap: fix typo in --dir config builder
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'helper/bwrap')
-rw-r--r--helper/bwrap/config.set.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/helper/bwrap/config.set.go b/helper/bwrap/config.set.go
index e9d3e131..ca2f8554 100644
--- a/helper/bwrap/config.set.go
+++ b/helper/bwrap/config.set.go
@@ -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
}