kevinburke / go-bindata

A small utility which generates Go code from any file. Useful for embedding binary data in a Go program.
Other
346 stars 28 forks source link

Bindata file change: we print file modes in octal now #13

Closed kevinburke closed 5 years ago

kevinburke commented 5 years ago

This is the mode that makes more sense for reading so let's use it. In the newly released v3.13.0 release.

Previously:

os.FileMode(420)

is now:

os.FileMode(0644)

The functionality is exactly the same.