We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4a18e commit 2053402Copy full SHA for 2053402
pkg/goods/materializer.go
@@ -100,7 +100,7 @@ func (m *Materializer) SupportFiles() error {
100
return fmt.Errorf("unable to read asset: %w", err)
101
}
102
dstpath := m.def.PathToEmbeddedClusterSupportFile(entry.Name())
103
- if err := os.WriteFile(dstpath, srcfile, 0700); err != nil {
+ if err := os.WriteFile(dstpath, srcfile, 0644); err != nil {
104
return fmt.Errorf("unable to write file: %w", err)
105
106
0 commit comments