summaryrefslogtreecommitdiff
path: root/init-tools.sh
diff options
context:
space:
mode:
authorDavis Goodin <dagood@users.noreply.github.com>2017-01-06 17:00:32 -0600
committerGitHub <noreply@github.com>2017-01-06 17:00:32 -0600
commit6784aa67f2ef7350770fdecefc2078e862fed3bb (patch)
treee201b2a747cf22f0aa70669fefddec90310e4107 /init-tools.sh
parente24872511946ed61ba15fa33a9a23eac3dba3969 (diff)
downloadcoreclr-6784aa67f2ef7350770fdecefc2078e862fed3bb.tar.gz
coreclr-6784aa67f2ef7350770fdecefc2078e862fed3bb.tar.bz2
coreclr-6784aa67f2ef7350770fdecefc2078e862fed3bb.zip
Update CLI to 1.0.0-preview2-1-003182, BuildTools to 1.0.27-prerelease-01205-03 (#8829)
* Update CLI to 1.0.0-preview2-1-003182, BuildTools to 1.0.27-prerelease-01205-03 * Add BuildVersion.targets and required properties to test directory's dir.props
Diffstat (limited to 'init-tools.sh')
-rwxr-xr-xinit-tools.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/init-tools.sh b/init-tools.sh
index 83a320f444..9a83bda189 100755
--- a/init-tools.sh
+++ b/init-tools.sh
@@ -107,7 +107,7 @@ if [ ! -e $__INIT_TOOLS_DONE_MARKER ]; then
cp -r $DOTNET_TOOL_DIR/* $__DOTNET_PATH
else
echo "Installing dotnet cli..."
- __DOTNET_LOCATION="https://dotnetcli.blob.core.windows.net/dotnet/Sdk/${__DOTNET_TOOLS_VERSION}/${__DOTNET_PKG}.${__DOTNET_TOOLS_VERSION}.tar.gz"
+ __DOTNET_LOCATION="https://dotnetcli.blob.core.windows.net/dotnet/preview/Binaries/${__DOTNET_TOOLS_VERSION}/${__DOTNET_PKG}.${__DOTNET_TOOLS_VERSION}.tar.gz"
# curl has HTTPS CA trust-issues less often than wget, so lets try that first.
echo "Installing '${__DOTNET_LOCATION}' to '$__DOTNET_PATH/dotnet.tar'" >> $__init_tools_log
if command -v curl > /dev/null; then