[rom] Use mode 0666 when writing rom file
This commit is contained in:
parent
88e095f426
commit
75e0ee2ba3
|
|
@ -18,7 +18,7 @@ func (sb *StudyBox) Write(filename string) error {
|
|||
|
||||
fmt.Println("Writing to " + filename)
|
||||
|
||||
return os.WriteFile(filename, raw, 0777)
|
||||
return os.WriteFile(filename, raw, 0666)
|
||||
}
|
||||
|
||||
func (sb *StudyBox) rawBytes() ([]byte, error) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue