Skip to content

Commit 72f5894

Browse files
committed
Fix file permissions
1 parent df15a06 commit 72f5894

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ref/IP_Search.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -921,10 +921,10 @@ func main() {
921921
if err != nil {debug(err)}
922922
}
923923
//Create directory structure as needed
924-
os.MkdirAll(filepath.Dir(*fileOut), 644)
924+
os.MkdirAll(filepath.Dir(*fileOut), 0644)
925925

926926
//Initialize CSV
927-
csvData, err := os.OpenFile(*fileOut, os.O_CREATE | os.O_WRONLY, 644)
927+
csvData, err := os.OpenFile(*fileOut, os.O_CREATE | os.O_WRONLY, 0644)
928928
if err != nil {debug(err)}
929929
defer csvData.Close()
930930
writer = csv.NewWriter(csvData)

0 commit comments

Comments
 (0)