From e2aa428f40d85b84f7de4a13124dcd96ec600a1c Mon Sep 17 00:00:00 2001 From: Davis Goodin Date: Wed, 30 Mar 2016 10:03:53 -0500 Subject: Upgrade dotnet cli version. --- init-tools.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'init-tools.sh') diff --git a/init-tools.sh b/init-tools.sh index f7d1aa8847..326e6519ea 100755 --- a/init-tools.sh +++ b/init-tools.sh @@ -33,7 +33,7 @@ fi __PACKAGES_DIR=$__scriptpath/packages __TOOLRUNTIME_DIR=$__scriptpath/Tools __DOTNET_PATH=$__TOOLRUNTIME_DIR/dotnetcli -__DOTNET_CMD=$__DOTNET_PATH/bin/dotnet +__DOTNET_CMD=$__DOTNET_PATH/dotnet if [ -z "$__BUILDTOOLS_SOURCE" ]; then __BUILDTOOLS_SOURCE=https://www.myget.org/F/dotnet-buildtools/; fi __BUILD_TOOLS_PACKAGE_VERSION=$(cat $__scriptpath/BuildToolsVersion.txt) __DOTNET_TOOLS_VERSION=$(cat $__scriptpath/DotnetCLIVersion.txt) @@ -47,18 +47,18 @@ OSName=$(uname -s) case $OSName in Darwin) OS=OSX - __DOTNET_PKG=dotnet-osx-x64 + __DOTNET_PKG=dotnet-dev-osx-x64 ;; Linux) OS=Linux - __DOTNET_PKG=dotnet-ubuntu-x64 + __DOTNET_PKG=dotnet-dev-ubuntu-x64 ;; *) echo "Unsupported OS $OSName detected. Downloading ubuntu-x64 tools" OS=Linux - __DOTNET_PKG=dotnet-ubuntu-x64 + __DOTNET_PKG=dotnet-dev-ubuntu-x64 ;; esac @@ -66,11 +66,11 @@ esac initDistroName $OS if [ "$__DistroName" == "centos" ]; then - __DOTNET_PKG=dotnet-centos-x64 + __DOTNET_PKG=dotnet-dev-centos-x64 fi if [ "$__DistroName" == "rhel" ]; then - __DOTNET_PKG=dotnet-centos-x64 + __DOTNET_PKG=dotnet-dev-centos-x64 fi __CLIDownloadURL=https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/${__DOTNET_TOOLS_VERSION}/${__DOTNET_PKG}.${__DOTNET_TOOLS_VERSION}.tar.gz -- cgit v1.2.3