Skip to content
Snippets Groups Projects
Commit b42bdc86 authored by Travis Ralston's avatar Travis Ralston
Browse files

Octal numbers?

parent 2bd2bc45
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ func main() { ...@@ -39,7 +39,7 @@ func main() {
str += fmt.Sprintf("\t\"%s\": \"%s\",\n", f, b64) str += fmt.Sprintf("\t\"%s\": \"%s\",\n", f, b64)
} }
str += "}\n" str += "}\n"
err := ioutil.WriteFile(*outputFile, []byte(str), 644) err := ioutil.WriteFile(*outputFile, []byte(str), 0644)
if err != nil { if err != nil {
panic(err) panic(err)
} }
......
...@@ -71,7 +71,7 @@ func extractPrefixTo(pathName string, destination string) { ...@@ -71,7 +71,7 @@ func extractPrefixTo(pathName string, destination string) {
dest := path.Join(destination, filepath.Base(f)) dest := path.Join(destination, filepath.Base(f))
logrus.Infof("Writing %s to %s", f, dest) logrus.Infof("Writing %s to %s", f, dest)
err = ioutil.WriteFile(dest, b, 644) err = ioutil.WriteFile(dest, b, 0644)
if err != nil { if err != nil {
panic(err) panic(err)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment