mirror of
https://github.com/DarrylNixon/melamine.git
synced 2024-04-22 06:27:20 -07:00
inodes are ints, not strs
This commit is contained in:
parent
911a45d2a8
commit
0bcbb0a4b0
1 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ class ShredDir(AsyncObject):
|
|||
for path in self.contents:
|
||||
await path.delete_hardlinks_by_inode()
|
||||
|
||||
proc = await asyncio.create_subprocess_exec("find", str(self.mount_point), "-inum", self.inode, "-delete")
|
||||
proc = await asyncio.create_subprocess_exec("find", str(self.mount_point), "-inum", str(self.inode), "-delete")
|
||||
stdout, _ = await proc.communicate()
|
||||
|
||||
if proc.returncode != 0:
|
||||
|
@ -164,7 +164,7 @@ class ShredFile(AsyncObject):
|
|||
return hash(self.absolute_path)
|
||||
|
||||
async def delete_hardlinks_by_inode(self) -> None:
|
||||
proc = await asyncio.create_subprocess_exec("find", str(self.mount_point), "-inum", self.inode, "-delete")
|
||||
proc = await asyncio.create_subprocess_exec("find", str(self.mount_point), "-inum", str(self.inode), "-delete")
|
||||
stdout, _ = await proc.communicate()
|
||||
|
||||
if proc.returncode != 0:
|
||||
|
|
Loading…
Reference in a new issue