diff options
Diffstat (limited to 'rlz/copy_files.bat')
-rw-r--r-- | rlz/copy_files.bat | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/rlz/copy_files.bat b/rlz/copy_files.bat new file mode 100644 index 0000000..7d62e41 --- /dev/null +++ b/rlz/copy_files.bat @@ -0,0 +1,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 |