From 9f9a82d69fa6cbc38db903273212ff79f0bc728e Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Sat, 4 Jan 2025 23:52:35 +0000 Subject: [PATCH] troubleshoot ci --- examples/passthrough/passthrough.go | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/passthrough/passthrough.go b/examples/passthrough/passthrough.go index 1caecdc..06629cb 100644 --- a/examples/passthrough/passthrough.go +++ b/examples/passthrough/passthrough.go @@ -264,5 +264,6 @@ func main() { args = append(args[:len(args)-2], args[len(args)-1]) } _host = fuse.NewFileSystemHost(&ptfs) + _host.SetUseIno(true) // FUSE3 only _host.Mount("", args[1:]) }