diff options
author | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-23 22:14:23 +0000 |
---|---|---|
committer | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-23 22:14:23 +0000 |
commit | a06f5f55f934ae8806503ef50c6900409f40444c (patch) | |
tree | cc8e007e0274b8704efba9344d83af18d73ed790 /tools/win | |
parent | ab2f6f33f70514eda53f618b916d9ca37247ceb6 (diff) | |
download | chromium_src-a06f5f55f934ae8806503ef50c6900409f40444c.zip chromium_src-a06f5f55f934ae8806503ef50c6900409f40444c.tar.gz chromium_src-a06f5f55f934ae8806503ef50c6900409f40444c.tar.bz2 |
Allow copy-installer script to work on OS versions other than Win8.
(notry for line endings)
BUG=NONE
TEST=NONE
NOTRY=true
Review URL: https://codereview.chromium.org/11412038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@169373 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/win')
-rwxr-xr-x | tools/win/copy-installer.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/win/copy-installer.bat b/tools/win/copy-installer.bat index 63cc69c..2615cba 100755 --- a/tools/win/copy-installer.bat +++ b/tools/win/copy-installer.bat @@ -118,7 +118,7 @@ REM Branch to handle copying via robocopy (fast) or xcopy (slow). :_copyfiles
robocopy /? 1> nul 2> nul
IF NOT "%ERRORLEVEL%"=="9009" (
-robocopy "%FROM%" "%TO%" %TOCOPY% /J /MT /XX
+robocopy "%FROM%" "%TO%" %TOCOPY% /MT /XX
) ELSE (
IF NOT EXIST "%TO%" mkdir "%TO%"
call :_xcopy_hack %TOCOPY%
|