diff options
author | Jody Bruchon <jody@jodybruchon.com> | 2020-11-12 17:03:39 -0500 |
---|---|---|
committer | Jody Bruchon <jody@jodybruchon.com> | 2020-11-12 17:03:39 -0500 |
commit | 63c00011d4ad59b37b08929ce413eb9506ac7150 (patch) | |
tree | cef5223e4b108281d0f334a517411ffa78f2e271 | |
parent | d052b9a112fb7ae749a829dceba6e3289663a303 (diff) | |
download | hypervideo-pre-63c00011d4ad59b37b08929ce413eb9506ac7150.tar.lz hypervideo-pre-63c00011d4ad59b37b08929ce413eb9506ac7150.tar.xz hypervideo-pre-63c00011d4ad59b37b08929ce413eb9506ac7150.zip |
make_win.bat: don't use UPX to pack vcruntime140.dll
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.
-rw-r--r-- | make_win.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_win.bat b/make_win.bat index 891d517b3..c35d9937e 100644 --- a/make_win.bat +++ b/make_win.bat @@ -1 +1 @@ -py -m PyInstaller youtube_dlc\__main__.py --onefile --name youtube-dlc --version-file win\ver.txt --icon win\icon\cloud.ico
\ No newline at end of file +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
\ No newline at end of file |