Skip to content

Commit

Permalink
Fix directory creation permissions. (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillyPillow authored Mar 27, 2022
1 parent e025b79 commit e7dafb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/lambda/lambda_fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (local *localLambda) EnsureDir(path string) error {
if !isLocal {
return fmt.Errorf("non-local file")
}
err := os.MkdirAll(path, 0600)
err := os.MkdirAll(path, 0700)
if err != nil {
return err
}
Expand Down

0 comments on commit e7dafb0

Please sign in to comment.