Skip to content

Commit

Permalink
fix: update linux permissions on files
Browse files Browse the repository at this point in the history
  • Loading branch information
Neal authored Aug 5, 2020
1 parent 79b14f4 commit 7a1e1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/secret-vault/read.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func (r *Read) Exec(v *vault.Client) error {
// set the secret in the Vela temp build volume
logrus.Tracef("write data to file %s", path)

err = a.WriteFile(path, []byte(v.(string)), 0444)
err = a.WriteFile(path, []byte(v.(string)), 0600)
if err != nil {
return err
}
Expand Down

0 comments on commit 7a1e1d2

Please sign in to comment.