Skip to content

Commit

Permalink
make_win.bat: don't use UPX to pack vcruntime140.dll
Browse files Browse the repository at this point in the history
If UPX is available in the PATH, then without this option,
make_win.bat will corrupt the DLL and the built executable will
be unusable.
  • Loading branch information
jbruchon committed Nov 12, 2020
1 parent d052b9a commit 63c0001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make_win.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
py -m PyInstaller youtube_dlc\__main__.py --onefile --name youtube-dlc --version-file win\ver.txt --icon win\icon\cloud.ico
py -m PyInstaller youtube_dlc\__main__.py --onefile --name youtube-dlc --version-file win\ver.txt --icon win\icon\cloud.ico --upx-exclude=vcruntime140.dll

0 comments on commit 63c0001

Please sign in to comment.