Alway create the backup directory

This commit is contained in:
Spitap
2025-11-01 17:33:54 +01:00
parent d6c70fba1d
commit a81cd4196c
2 changed files with 4 additions and 1 deletions

View File

@@ -173,6 +173,7 @@ class Installer:
if self.with_db:
self._dump_database(path)
custom_backup_path = os.path.join(path, "custom", self.appname)
utils.mkdir_safe(custom_backup_path)
self.custom_backup(custom_backup_path)
def custom_backup(self, path):