Skip to content

Commit

Permalink
fix(theatre-secrets): ensure secrets path is created with execute (li…
Browse files Browse the repository at this point in the history
…st-files) perms
  • Loading branch information
ijames-gc committed Feb 2, 2024
1 parent 9fc13e4 commit 0e4c6e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/theatre-secrets/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func mainError(ctx context.Context, command string) (err error) {
path = file.filesystemPath
}
// ensure the path structure is available
err := os.MkdirAll(filepath.Dir(path), 0600)
err := os.MkdirAll(filepath.Dir(path), 0700)
if err != nil {
return errors.Wrap(err, "failed to ensure path structure is available")
}
Expand Down

0 comments on commit 0e4c6e4

Please sign in to comment.