From 1407c09c30c13566281b6455e3d4e0c48191a63f Mon Sep 17 00:00:00 2001 From: Troy Dai Date: Tue, 10 Mar 2015 13:43:08 -0700 Subject: [PATCH] Integrate latest dnvm --- build/dnvm.ps1 | 6 +++--- build/dnvm.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/dnvm.ps1 b/build/dnvm.ps1 index 45ec9daa04..7d77cd5930 100644 --- a/build/dnvm.ps1 +++ b/build/dnvm.ps1 @@ -59,7 +59,7 @@ function _WriteOut { ### Constants $ProductVersion="1.0.0" -$BuildVersion="beta4-10334" +$BuildVersion="beta4-10338" $Authors="Microsoft Open Technologies, Inc." # If the Version hasn't been replaced... @@ -1055,7 +1055,7 @@ function dnvm-use { Set-Path (Change-Path $env:Path "" ($RuntimeDirs)) if ($Persistent) { - Console-Write "Removing all runtimes from user PATH" + _WriteOut "Removing all runtimes from user PATH" $userPath = [Environment]::GetEnvironmentVariable("Path", [System.EnvironmentVariableTarget]::User) $userPath = Change-Path $userPath "" ($RuntimeDirs) [Environment]::SetEnvironmentVariable("Path", $userPath, [System.EnvironmentVariableTarget]::User) @@ -1073,7 +1073,7 @@ function dnvm-use { Set-Path (Change-Path $env:Path $runtimeBin ($RuntimeDirs)) if ($Persistent) { - Console-Write "Adding $runtimeBin to user PATH" + _WriteOut "Adding $runtimeBin to user PATH" $userPath = [Environment]::GetEnvironmentVariable("Path", [System.EnvironmentVariableTarget]::User) $userPath = Change-Path $userPath $runtimeBin ($RuntimeDirs) [Environment]::SetEnvironmentVariable("Path", $userPath, [System.EnvironmentVariableTarget]::User) diff --git a/build/dnvm.sh b/build/dnvm.sh index 0744a52ae8..8654f04387 100644 --- a/build/dnvm.sh +++ b/build/dnvm.sh @@ -2,7 +2,7 @@ # Source this file from your .bash-profile or script to use # "Constants" -_DNVM_BUILDNUMBER="beta4-10334" +_DNVM_BUILDNUMBER="beta4-10338" _DNVM_AUTHORS="Microsoft Open Technologies, Inc." _DNVM_RUNTIME_PACKAGE_NAME="dnx" _DNVM_RUNTIME_FRIENDLY_NAME=".NET Execution Environment"