Update build process to include certificate directory for SSL verification in frozen builds

This commit is contained in:
Ross
2025-11-24 15:44:43 +00:00
parent 7528202978
commit 3680716d71
3 changed files with 48 additions and 10 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ project_root = here
datas = [
(str(project_root / 'icon'), 'icon'),
(str(project_root / 'icon' / 'icon1.png'), 'icon'),
# include user-supplied CA bundle if present so frozen app can use it
(str(project_root / 'cert.pem'), '.')
# include user-supplied CA bundle folder (all files) so frozen app can use it
(str(project_root / 'cert'), 'cert')
]
binaries = []