From 4971be9b374152057d3acc23ee799518897e5eca Mon Sep 17 00:00:00 2001 From: stumpylog <797416+stumpylog@users.noreply.github.com> Date: Thu, 4 Jun 2026 12:02:45 -0700 Subject: [PATCH] Updates the script in docker too --- docker/rootfs/usr/local/bin/deduplicate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/rootfs/usr/local/bin/deduplicate.py b/docker/rootfs/usr/local/bin/deduplicate.py index c071cf043..e7fdf3bfe 100755 --- a/docker/rootfs/usr/local/bin/deduplicate.py +++ b/docker/rootfs/usr/local/bin/deduplicate.py @@ -61,7 +61,7 @@ def replace_with_symlinks( total_duplicates = 0 space_saved = 0 - for file_hash, file_list in duplicate_groups.items(): + for file_list in duplicate_groups.values(): # Keep the first file as the original, replace others with symlinks original_file = file_list[0] duplicates = file_list[1:]