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:
authorSenthil <schellap@microsoft.com>2016-02-25 23:53:49 +0300
committerSenthil <schellap@microsoft.com>2016-02-25 23:53:49 +0300
commit58dfc8f80fc7975b82851575905be21bd0634446 (patch)
tree83eddcbf5fe96413ba2e0739dd4516064adcb37c /build.sh
parent8f5490c576348f50193d53f6e297c6d825cf86a0 (diff)
Pin Windows CLI to Beta 1530 and Unix to 1540
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 1ba384a72..5652910a8 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-${__build_os_lowercase}-${__build_arch_lowercase}.latest.tar.gz
+ local __cli_tarball=dotnet-${__build_os_lowercase}-${__build_arch_lowercase}.1.0.0.001540.tar.gz
local __cli_tarball_path=${__tools_dir}/${__cli_tarball}
- download_file ${__cli_tarball_path} "https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/Latest/${__cli_tarball}"
+ download_file ${__cli_tarball_path} "https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/1.0.0.001540/${__cli_tarball}"
tar -xzf ${__cli_tarball_path} -C ${__cli_dir}
export DOTNET_HOME=${__cli_dir}
#