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:
parent
66e17ff6c8
commit
bd5060887c
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue