aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/hpkg
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/hpkg')
-rw-r--r--cmd/hpkg/app.go2
-rw-r--r--cmd/hpkg/with.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/cmd/hpkg/app.go b/cmd/hpkg/app.go
index 87a2c47c..350eaaa7 100644
--- a/cmd/hpkg/app.go
+++ b/cmd/hpkg/app.go
@@ -100,7 +100,7 @@ func (app *appInfo) toHst(pathSet *appPathSet, pathname *check.Absolute, argv []
Path: pathname,
Args: argv,
},
- ExtraPerms: []*hst.ExtraPermConfig{
+ ExtraPerms: []hst.ExtraPermConfig{
{Path: dataHome, Execute: true},
{Ensure: true, Path: pathSet.baseDir, Read: true, Write: true, Execute: true},
},
diff --git a/cmd/hpkg/with.go b/cmd/hpkg/with.go
index 5d6eb87c..97f80105 100644
--- a/cmd/hpkg/with.go
+++ b/cmd/hpkg/with.go
@@ -28,7 +28,7 @@ func withNixDaemon(
mustRunAppDropShell(ctx, msg, updateConfig(&hst.Config{
ID: app.ID,
- ExtraPerms: []*hst.ExtraPermConfig{
+ ExtraPerms: []hst.ExtraPermConfig{
{Path: dataHome, Execute: true},
{Ensure: true, Path: pathSet.baseDir, Read: true, Write: true, Execute: true},
},
@@ -83,7 +83,7 @@ func withCacheDir(
mustRunAppDropShell(ctx, msg, &hst.Config{
ID: app.ID,
- ExtraPerms: []*hst.ExtraPermConfig{
+ ExtraPerms: []hst.ExtraPermConfig{
{Path: dataHome, Execute: true},
{Ensure: true, Path: pathSet.baseDir, Read: true, Write: true, Execute: true},
{Path: workDir, Execute: true},