summaryrefslogtreecommitdiff
path: root/src/buildstream/_fuse/hardlinks.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/_fuse/hardlinks.py')
-rw-r--r--src/buildstream/_fuse/hardlinks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_fuse/hardlinks.py b/src/buildstream/_fuse/hardlinks.py
index bcc2eeaa3..798e1c816 100644
--- a/src/buildstream/_fuse/hardlinks.py
+++ b/src/buildstream/_fuse/hardlinks.py
@@ -161,7 +161,7 @@ class SafeHardlinkOps(Operations):
'f_ffree', 'f_files', 'f_flag', 'f_frsize', 'f_namemax'))
def unlink(self, path):
- return os.unlink(self._full_path(path))
+ os.unlink(self._full_path(path))
def symlink(self, target, source):
'creates a symlink `target -> source` (e.g. ln -s source target)'