Skip to content

Commit 3d82653

Browse files
committed
set data directory to /data
1 parent f4df033 commit 3d82653

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/storage/utils/localfs/localfs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ func (c *Config) ApplyDefaults() {
8383
// ensure share folder always starts with slash
8484
c.ShareFolder = path.Join("/", c.ShareFolder)
8585

86-
c.DataDirectory = c.Root // path.Join(c.Root, "data")
86+
c.DataDirectory = path.Join(c.Root, "data")
8787
c.Uploads = path.Join(c.Root, ".uploads")
8888
c.Shadow = path.Join(c.Root, ".shadow")
8989

0 commit comments

Comments
 (0)