blob: 022c54fe05fa644ad088a20d160bcdbe446f7ad6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
:: Batch file run to copy rlz binaries
@echo off
setlocal
set InputPath=%~1
set OutDir=%~2
if NOT "%CHROMIUM_BUILD%" == "_google_chrome" goto END
xcopy /R /C /Y %InputPath% %OutDir%
:END
|