blob: 7d62e41898867ebf2079bcb36f0aafcacdb3f792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
:: Batch file run to copy rlz binaries
@echo off
setlocal
set InputPath=%~1
set OutDir=%~2
REM Remove this line when we start setting CHROMIUM_BUILD option on buildbots
set CHROMIUM_BUILD=_google_chrome
if NOT "%CHROMIUM_BUILD%" == "_google_chrome" goto END
xcopy /R /C /Y %InputPath% %OutDir%
:END
|