diff options
-rw-r--r-- | buildstream/_fuse/mount.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_fuse/mount.py b/buildstream/_fuse/mount.py index 0ab1ce715..83b3ba953 100644 --- a/buildstream/_fuse/mount.py +++ b/buildstream/_fuse/mount.py @@ -184,7 +184,7 @@ class Mount(): # Run fuse in foreground in this child process, internally libfuse # will handle SIGTERM and gracefully exit it's own little main loop. # - FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True, nonempty=True) + FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True) # Explicit 0 exit code, if the operations crashed for some reason, the exit # code will not be 0, and we want to know about it. |