1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-07-02 03:52:55 -05:00

#89 [pyinst.py] Exclude vcruntime140.dll from UPX (#89)

Related: https://github.com/blackjack4494/yt-dlc/pull/182 (7b400ac40b)

Authored by: jbruchon
This commit is contained in:
Jody Bruchon
2021-02-16 06:11:47 -05:00
committed by GitHub
parent 78b9a616cc
commit 46261325be

View File

@ -73,6 +73,7 @@ PyInstaller.__main__.run([
'--exclude-module=ytdlp_plugins',
'--hidden-import=mutagen',
'--hidden-import=Crypto',
'--upx-exclude=vcruntime140.dll',
'youtube_dlc/__main__.py',
])
SetVersion('dist/youtube-dlc%s.exe' % _x86, VERSION_FILE)