From eafc63fa2c7b80f90affc1ca20b7e08704504d2f Mon Sep 17 00:00:00 2001 From: Harry Schilling Date: Sun, 19 Jan 2025 00:04:53 +0100 Subject: [PATCH] Make new directory permissions to 0777 --- files/file.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/file.go b/files/file.go index 03b3a6f9..1fddad2a 100644 --- a/files/file.go +++ b/files/file.go @@ -28,7 +28,7 @@ import ( ) const PermFile = 0644 -const PermDir = 0755 +const PermDir = 0777 var ( reSubDirs = regexp.MustCompile("(?i)^sub(s|titles)$")