diff options
author | George Hazan <george.hazan@gmail.com> | 2024-03-21 16:41:43 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-03-21 16:41:43 +0300 |
commit | 0f37294beca58d653704c6885b668f8a41b0ed50 (patch) | |
tree | 3aa0d993b6d0143280f9eab8de8baddfa851ffd1 /tools/build_scripts | |
parent | 251eb0c9bd26081245fbb8b7354afc2918a2d7c5 (diff) |
we don't have to copy subfolders, just a single file
Diffstat (limited to 'tools/build_scripts')
-rw-r--r-- | tools/build_scripts/z2_PackPluginUpdater.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_scripts/z2_PackPluginUpdater.bat b/tools/build_scripts/z2_PackPluginUpdater.bat index f64c8264e9..d414a586d2 100644 --- a/tools/build_scripts/z2_PackPluginUpdater.bat +++ b/tools/build_scripts/z2_PackPluginUpdater.bat @@ -86,7 +86,7 @@ for /f %%a in ('dir plugins\*.dll /B /L') do ( if /I "%%a"=="NewStory.dll" (
ren Libs Libs2
mkdir Libs
- xcopy /S /V /Y "../../redist/x%tp%/cairo.dll" "Libs"
+ copy ..\..\redist\x%tp%\cairo.dll .\Libs
%ZipIt% "%Arch%\Plugins\%%~na.zip" "Libs\*.dll"
rd /S /Q Libs
ren Libs2 Libs
|