Skip to content

Commit 2053402

Browse files
authored
chore: fix host-support-bundle.yaml permissions (#914)
Signed-off-by: Evans Mungai <evans@replicated.com>
1 parent 2c4a18e commit 2053402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/goods/materializer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func (m *Materializer) SupportFiles() error {
100100
return fmt.Errorf("unable to read asset: %w", err)
101101
}
102102
dstpath := m.def.PathToEmbeddedClusterSupportFile(entry.Name())
103-
if err := os.WriteFile(dstpath, srcfile, 0700); err != nil {
103+
if err := os.WriteFile(dstpath, srcfile, 0644); err != nil {
104104
return fmt.Errorf("unable to write file: %w", err)
105105
}
106106
}

0 commit comments

Comments
 (0)