Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2017-02-22 22:47:38 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2017-02-22 23:59:35 +0300
commit9d103eb7b08f96e00e81e9c9ad2b634788e31029 (patch)
tree22fa639e44c2b32e6fd45224c40c2cd1adba671c /run.cmd
parent32d7ce8d29ab0cfcfd5154c703037fc947933cfa (diff)
Always copy over Tools-Override files to Tools to avoid incremental tools issues
Moves the copy of Tools-Override to run.cmd/sh and always do it so that we don't keep getting into incremental tools issues when we make changes in Tools-Override directory without a BuildTools version update which forces an update of Tools.
Diffstat (limited to 'run.cmd')
-rw-r--r--run.cmd3
1 files changed, 3 insertions, 0 deletions
diff --git a/run.cmd b/run.cmd
index 1b0ab1a96a..6079be6905 100644
--- a/run.cmd
+++ b/run.cmd
@@ -20,6 +20,9 @@ set Platform=
call %~dp0init-tools.cmd
if NOT [%ERRORLEVEL%]==[0] exit /b 1
+:: Always copy over the Tools-Override
+xcopy %~dp0Tools-Override\* %~dp0Tools /y >nul
+
set _toolRuntime=%~dp0Tools
set _dotnet=%_toolRuntime%\dotnetcli\dotnet.exe