Skip to content

Commit

Permalink
allow refs-file to be read by other users (ko-build#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
seankhliao authored Jun 11, 2022
1 parent e6a7a37 commit eaba2b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/commands/resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func makePublisher(po *options.PublishOptions) (publish.Interface, error) {
}

if po.ImageRefsFile != "" {
f, err := os.OpenFile(po.ImageRefsFile, os.O_RDWR|os.O_CREATE, 0600)
f, err := os.OpenFile(po.ImageRefsFile, os.O_RDWR|os.O_CREATE, 0644)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit eaba2b8

Please sign in to comment.