From b08f681c9217a6ace6b49fffd13f5c985e260a6a Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Sun, 7 Dec 2025 17:40:08 +0300 Subject: [PATCH] Exclude lost+found dir from applications --- files/backups/backup-all.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/files/backups/backup-all.py b/files/backups/backup-all.py index 0551c21..c5bb97e 100644 --- a/files/backups/backup-all.py +++ b/files/backups/backup-all.py @@ -56,6 +56,8 @@ class BackupManager: source_dirs = itertools.chain(applications_path.iterdir(), home_path.iterdir()) for app_dir in source_dirs: + if app_dir == "lost+found": + continue if app_dir.is_dir(): try: # Get the owner of the directory