1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-05-11 11:19:48 +00:00

Include dbm.dumb for windows build

cx_Freeze was only including dbm.ndbm which is not available on windows.
This should fix hsoft/dupeguru#474
This commit is contained in:
Andrew Senetar 2018-02-25 16:14:55 -06:00
parent afe1d4ed2e
commit 2164d1ee99

View File

@ -143,7 +143,7 @@ def package_windows():
'build_exe': {
'build_exe': buildpath,
'excludes': [],
'includes': ['atexit'],
'includes': ['atexit', 'dbm.dumb'],
'include_files': include_files,
'include_msvcr': True,
'zip_include_packages': ['*'],