1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-23 06:31:58 +00:00

pyinstaller: add borghash to hidden imports

This commit is contained in:
Thomas Waldmann 2024-10-31 22:19:30 +01:00
parent 66e17ff6c8
commit bd5060887c
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

View file

@ -10,9 +10,9 @@ here = os.path.dirname(os.path.abspath(SPEC))
basepath = os.path.abspath(os.path.join(here, '..'))
if is_win32:
hiddenimports = []
hiddenimports = ['borghash']
else:
hiddenimports = ['borg.platform.posix', 'pkg_resources.py2_warn', ]
hiddenimports = ['borg.platform.posix', 'pkg_resources.py2_warn', 'borghash']
block_cipher = None