diff options
author | Jody Bruchon <jody@c02ware.com> | 2021-02-16 06:11:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 16:41:47 +0530 |
commit | 46261325bea1593d5c438a0fe1f945450ee5ac96 (patch) | |
tree | fd9a05e08fe0393f980f4455922ca38b2c038154 | |
parent | 78b9a616cc9a02a7eddaa096b9d7c4fecb575e60 (diff) | |
download | hypervideo-pre-46261325bea1593d5c438a0fe1f945450ee5ac96.tar.lz hypervideo-pre-46261325bea1593d5c438a0fe1f945450ee5ac96.tar.xz hypervideo-pre-46261325bea1593d5c438a0fe1f945450ee5ac96.zip |
#89 [pyinst.py] Exclude vcruntime140.dll from UPX (#89)
Related: https://github.com/blackjack4494/yt-dlc/pull/182 (7b400ac40b8e9ce5abaa6d0293fa9d4f017cf1f3)
Authored by: jbruchon
-rw-r--r-- | pyinst.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) |