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
path: root/run.sh
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.sh
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.sh')
-rwxr-xr-xrun.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/run.sh b/run.sh
index cd70f8bcf8..c89566d0d4 100755
--- a/run.sh
+++ b/run.sh
@@ -6,6 +6,9 @@ if [ $? -ne 0 ]; then
exit 1
fi
+# Always copy over the Tools-Override
+cp $__scriptpath/Tools-Override/* $__scriptpath/Tools > /dev/null
+
__toolRuntime=$__scriptpath/Tools
__dotnet=$__toolRuntime/dotnetcli/dotnet