fix get_store_hashes()
This commit is contained in:
parent
9f63fe3da8
commit
4febcff649
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ def delete_object(key: str) -> None:
|
|||
|
||||
def get_store_hashes() -> set[str]:
|
||||
hashes = set()
|
||||
for obj in os.listdir("/nix/store"):
|
||||
for obj in listdir("/nix/store"):
|
||||
hashes.add(obj.split("-")[0])
|
||||
|
||||
async def main() -> None:
|
||||
|
|
Loading…
Reference in a new issue