'allow_other' :)

This commit is contained in:
jake 2023-10-29 21:17:14 -04:00
parent e091da0412
commit 5053621c17

View file

@ -441,6 +441,7 @@ sub write_to_neocities {
#$mountpoint = shift(@ARGV) if @ARGV;
Fuse::main(
mountpoint=>$mountpoint,
mountopts => "allow_other",
getattr=>"main::e_getattr",
getdir =>"main::e_getdir",
open =>"main::e_open",
@ -453,4 +454,5 @@ Fuse::main(
rmdir =>"main::e_rmdir",
rename =>"main::e_rename",
threaded=>0
);