From 835b88b2ae66327f5f644f182e6301cf2df58529 Mon Sep 17 00:00:00 2001 From: Daniel Manila Date: Sat, 31 May 2025 00:30:56 +0000 Subject: [PATCH] Set the FS to allow root This should probably be a option, but I needed it for my set up so I set it as hard coded here --- pCloudCC/lib/pclsync/pfs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/pCloudCC/lib/pclsync/pfs.c b/pCloudCC/lib/pclsync/pfs.c index 165c0856..7a5d17e3 100644 --- a/pCloudCC/lib/pclsync/pfs.c +++ b/pCloudCC/lib/pclsync/pfs.c @@ -3420,6 +3420,7 @@ static int psync_fs_do_start(){ if (!is_fuse3_installed_on_system()) { fuse_opt_add_arg(&args, "-ononempty"); } + fuse_opt_add_arg(&args, "-oallow_root"); fuse_opt_add_arg(&args, "-ohard_remove"); // fuse_opt_add_arg(&args, "-d"); #endif