diff options
author | George Hazan <ghazan@miranda.im> | 2023-02-25 18:20:01 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-02-25 18:20:01 +0300 |
commit | 89f4337d2faa3837a3f658ad3d4e359a3a32a08b (patch) | |
tree | fea6fbab2087b977780bebd44c2c2311e347a1a1 /tools/build_scripts | |
parent | 30a2dd50ffd863364c55cce89c0641d9023d306b (diff) |
oops... forgotten pause
Diffstat (limited to 'tools/build_scripts')
-rw-r--r-- | tools/build_scripts/z2_PackPluginUpdater.bat | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/build_scripts/z2_PackPluginUpdater.bat b/tools/build_scripts/z2_PackPluginUpdater.bat index cbe60b2fe5..e565199180 100644 --- a/tools/build_scripts/z2_PackPluginUpdater.bat +++ b/tools/build_scripts/z2_PackPluginUpdater.bat @@ -87,11 +87,10 @@ for /f %%a in ('dir plugins\*.dll /B /L') do ( if /I "%%a"=="Jingle.dll" (
ren Libs Libs2
mkdir Libs
- copy /s ../../redist/x%tp%/gstreamer/*.* Libs
+ xcopy /S /V /Y "../../redist/x%tp%/gstreamer" "Libs"
%ZipIt% "%Arch%\Plugins\%%~na.zip" "Libs\*.dll"
- rd /s /q Libs
+ rd /S /Q Libs
ren Libs2 Libs
- pause
)
rem now adding plugin itself into archive
%ZipIt% "%Arch%\Plugins\%%~na.zip" %%a
|