From 75612879c7389f30e041dd148ce6ae154e0363a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=98=AD?= <81747598+lan-yonghui@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:23:47 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E9=83=A8=E5=88=86?= =?UTF-8?q?=E6=83=85=E5=86=B5=E4=B8=8B=E7=BC=93=E5=AD=98=E7=9B=AE=E5=BD=95?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E5=90=AF=E5=8A=A8=E5=A4=B1=E8=B4=A5=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20(#6382)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/init/cache/cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/init/cache/cache.go b/backend/init/cache/cache.go index 3d2645786..e62ad117c 100644 --- a/backend/init/cache/cache.go +++ b/backend/init/cache/cache.go @@ -12,7 +12,7 @@ import ( func Init() { c := global.CONF.System.Cache _ = os.RemoveAll(c) - _ = os.Mkdir(c, 0644) + _ = os.Mkdir(c, 0755) options := badger.Options{ Dir: c, ValueDir: c,