Fix linux directory perms, as described in #6

This commit is contained in:
Barold 2021-01-13 23:54:44 +02:00
parent 16cdc5896c
commit d16335eb27
3 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ func main() {
fmt.Println("Resolved working directory to: " + mydir)
//fmt.Println("Grabbing list of pages...")
if _, err := os.Stat(mydir + "/issue/"); os.IsNotExist(err) {
os.Mkdir(mydir+"/issue/", os.ModeDir)
os.Mkdir(mydir+"/issue/", 0600)
}
for _, issue := range issueList.Data {

Binary file not shown.

Binary file not shown.