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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Nattress <simonn@microsoft.com>2016-04-06 05:04:39 +0300
committerSimon Nattress <simonn@microsoft.com>2016-04-06 05:04:39 +0300
commit2bf1b8c3a0a62a851f33e066e91dfb1b234d37a2 (patch)
treeec6f475f93a5c3a2fe1cc15bb03f1d5d0fcbb136 /build.sh
parent5ccde2055fc798e18ad5418cf0d81e2bb51cd070 (diff)
Take newest CLI
Windows' CLI blob seems to have been removed and can no longer be restored during build. Roll forwards to the latest blob.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 04ea879b6..52cdd3b0f 100755
--- a/build.sh
+++ b/build.sh
@@ -100,9 +100,9 @@ install_dotnet_cli()
fi
local __build_arch_lowercase=$(echo "${__BuildArch}" | tr '[:upper:]' '[:lower:]')
- local __cli_tarball=dotnet-dev-${__build_os_lowercase}-${__build_arch_lowercase}.1.0.0-beta-002209.tar.gz
+ local __cli_tarball=dotnet-dev-${__build_os_lowercase}-${__build_arch_lowercase}.1.0.0-beta-002228.tar.gz
local __cli_tarball_path=${__tools_dir}/${__cli_tarball}
- download_file ${__cli_tarball_path} "https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/1.0.0-beta-002209/${__cli_tarball}"
+ download_file ${__cli_tarball_path} "https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/1.0.0-beta-002228/${__cli_tarball}"
tar -xzf ${__cli_tarball_path} -C ${__cli_dir}
export DOTNET_HOME=${__cli_dir}
#