Skip to content

Commit 7dad807

Browse files
ASP.NET Push Botunknown
authored andcommitted
⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
Source: aspnet/dnvm@0c3fc02
1 parent 7681b7e commit 7dad807

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dnvm.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function _WriteOut {
6767

6868
### Constants
6969
$ProductVersion="1.0.0"
70-
$BuildVersion="beta5-10372"
70+
$BuildVersion="beta5-10373"
7171
$Authors="Microsoft Open Technologies, Inc."
7272

7373
# If the Version hasn't been replaced...
@@ -190,7 +190,7 @@ if(!$UserHome) {
190190
_WriteDebug "Detecting User Home..."
191191
$pf = $env:ProgramFiles
192192
if(Test-Path "env:\ProgramFiles(x86)") {
193-
$pf32 = cat "env:\ProgramFiles(x86)"
193+
$pf32 = Get-Content "env:\ProgramFiles(x86)"
194194
}
195195

196196
# Canonicalize so we can do StartsWith tests
@@ -1366,7 +1366,7 @@ function dnvm-setup {
13661366
_WriteOut "Adding $DestinationHome to Process $HomeEnvVar"
13671367
$processHome = ""
13681368
if(Test-Path "env:\$HomeEnvVar") {
1369-
$processHome = cat "env:\$HomeEnvVar"
1369+
$processHome = Get-Content "env:\$HomeEnvVar"
13701370
}
13711371
$processHome = Change-Path $processHome "%USERPROFILE%\$DefaultUserDirectoryName" $PathsToRemove
13721372
Set-Content "env:\$HomeEnvVar" $processHome

dnvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Source this file from your .bash-profile or script to use
33

44
# "Constants"
5-
_DNVM_BUILDNUMBER="beta5-10372"
5+
_DNVM_BUILDNUMBER="beta5-10373"
66
_DNVM_AUTHORS="Microsoft Open Technologies, Inc."
77
_DNVM_RUNTIME_PACKAGE_NAME="dnx"
88
_DNVM_RUNTIME_FRIENDLY_NAME=".NET Execution Environment"

0 commit comments

Comments
 (0)