aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/fpkg/app.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/fpkg/app.go b/cmd/fpkg/app.go
index c6ed60e6..facf2dc2 100644
--- a/cmd/fpkg/app.go
+++ b/cmd/fpkg/app.go
@@ -29,7 +29,7 @@ type appInfo struct {
// passed through to [fst.Config]
Net bool `json:"net,omitempty"`
// passed through to [fst.Config]
- Dev bool `json:"dev,omitempty"`
+ Device bool `json:"dev,omitempty"`
// passed through to [fst.Config]
Tty bool `json:"tty,omitempty"`
// passed through to [fst.Config]
@@ -79,7 +79,7 @@ func (app *appInfo) toFst(pathSet *appPathSet, argv []string, flagDropShell bool
Devel: app.Devel,
Userns: app.Userns,
Net: app.Net,
- Dev: app.Dev,
+ Device: app.Device,
Tty: app.Tty || flagDropShell,
MapRealUID: app.MapRealUID,
DirectWayland: app.DirectWayland,