From 58600c62a3fc8a595a8ecab72ea5a4b87aace14f Mon Sep 17 00:00:00 2001 From: Helge Norberg Date: Tue, 15 Nov 2016 21:22:15 +0100 Subject: [PATCH] [CEF] excluded libcef.pdb from Windows build to be able to change back to .zip format which is more supported out of the box on most systems. --- build-scripts/build-windows.bat | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-scripts/build-windows.bat b/build-scripts/build-windows.bat index 1274a8770..8830d34a9 100644 --- a/build-scripts/build-windows.bat +++ b/build-scripts/build-windows.bat @@ -45,7 +45,6 @@ echo Copying binaries... copy shell\*.dll "%SERVER_FOLDER%\Server" || goto :error copy shell\RelWithDebInfo\casparcg.exe "%SERVER_FOLDER%\Server" || goto :error copy shell\RelWithDebInfo\casparcg.pdb "%SERVER_FOLDER%\Server" || goto :error -copy shell\RelWithDebInfo\libcef.dll.pdb "%SERVER_FOLDER%\Server" || goto :error copy shell\casparcg.config "%SERVER_FOLDER%\Server" || goto :error copy shell\*.ttf "%SERVER_FOLDER%\Server" || goto :error copy shell\*.pak "%SERVER_FOLDER%\Server" || goto :error @@ -59,7 +58,7 @@ copy ..\README "%SERVER_FOLDER%" || goto :error :: Create zip file echo Creating zip... -"%BUILD_7ZIP%" a "%BUILD_ARCHIVE_NAME%.7z" "%SERVER_FOLDER%" || goto :error +"%BUILD_7ZIP%" a "%BUILD_ARCHIVE_NAME%.zip" "%SERVER_FOLDER%" || goto :error :: Skip exiting with failure goto :EOF -- 2.39.2