Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: rlz/copy_files.bat

Issue 10760: - Stop rlz from constantly "rebuilding".... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_kjs.sln ('k') | rlz/output_rlz_copy.rules » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 :: Batch file run to copy rlz binaries 1 :: Batch file run to copy rlz binaries
2 @echo off 2 @echo off
3 3
4 setlocal 4 setlocal
5 5
6 set InputPath=%~1 6 set InputPath=%~1
7 set OutDir=%~2 7 set OutDir=%~2
8 8
9 if NOT "%CHROMIUM_BUILD%" == "_google_chrome" goto END 9 if exist "%InputPath%" xcopy /R /C /Y "%InputPath%" "%OutDir%"
10
11 xcopy /R /C /Y %InputPath% %OutDir%
12
13 :END
OLDNEW
« no previous file with comments | « chrome/chrome_kjs.sln ('k') | rlz/output_rlz_copy.rules » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698