Skip to content

Commit a4314d1

Browse files
ASP.NET Push Botunknown
authored andcommitted
⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
Source: aspnet/dnvm@879aa15
1 parent 9adc665 commit a4314d1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

dnvm.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function _WriteOut {
6767

6868
### Constants
6969
$ProductVersion="1.0.0"
70-
$BuildVersion="rc1-15535"
70+
$BuildVersion="rc2-15538"
7171
$Authors="Microsoft Open Technologies, Inc."
7272

7373
# If the Version hasn't been replaced...

dnvm.sh

Lines changed: 3 additions & 2 deletions
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="rc1-15535"
5+
_DNVM_BUILDNUMBER="rc2-15538"
66
_DNVM_AUTHORS="Microsoft Open Technologies, Inc."
77
_DNVM_RUNTIME_PACKAGE_NAME="dnx"
88
_DNVM_RUNTIME_FRIENDLY_NAME=".NET Execution Environment"
@@ -981,7 +981,8 @@ dnvm()
981981
if [[ $2 == "-detailed" ]]; then
982982
# Calculate widest alias
983983
local widestAlias=5
984-
for f in `echo $runtimes`; do
984+
for f in `echo -e "$runtimes"`; do
985+
f=`echo $f | sed 's/\([:]\).*//'`
985986
local pkgName=$(__dnvm_package_name "$f")
986987
local pkgVersion=$(__dnvm_package_version "$f")
987988
local alias=""

0 commit comments

Comments
 (0)