aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJody Bruchon <jody@jodybruchon.com>2020-11-12 17:03:39 -0500
committerJody Bruchon <jody@jodybruchon.com>2020-11-12 17:03:39 -0500
commit63c00011d4ad59b37b08929ce413eb9506ac7150 (patch)
treecef5223e4b108281d0f334a517411ffa78f2e271
parentd052b9a112fb7ae749a829dceba6e3289663a303 (diff)
downloadhypervideo-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.bat2
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