File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ function _WriteOut {
67
67
68
68
# ## Constants
69
69
$ProductVersion = " 1.0.0"
70
- $BuildVersion = " beta7-10402 "
70
+ $BuildVersion = " beta7-10403 "
71
71
$Authors = " Microsoft Open Technologies, Inc."
72
72
73
73
# If the Version hasn't been replaced...
Original file line number Diff line number Diff line change 2
2
# Source this file from your .bash-profile or script to use
3
3
4
4
# "Constants"
5
- _DNVM_BUILDNUMBER=" beta7-10402 "
5
+ _DNVM_BUILDNUMBER=" beta7-10403 "
6
6
_DNVM_AUTHORS=" Microsoft Open Technologies, Inc."
7
7
_DNVM_RUNTIME_PACKAGE_NAME=" dnx"
8
8
_DNVM_RUNTIME_FRIENDLY_NAME=" .NET Execution Environment"
@@ -245,14 +245,15 @@ __dnvm_unpack() {
245
245
246
246
[ -e " $runtimeFile " ] && rm -f " $runtimeFile "
247
247
248
- # Set shell commands as executable
249
- find " $runtimeFolder /bin/" -type f \
250
- -exec sh -c " head -c 20 {} | grep '/usr/bin/env bash\|/bin/bash' > /dev/null" \; -print | xargs -r chmod 775
251
-
252
248
# Set dnx to be executable
253
249
if [[ -s " $runtimeFolder /bin/dnx" ]]; then
254
250
chmod 775 " $runtimeFolder /bin/dnx"
255
251
fi
252
+
253
+ # Set dnu to be executable
254
+ if [[ -s " $runtimeFolder /bin/dnu" ]]; then
255
+ chmod 775 " $runtimeFolder /bin/dnu"
256
+ fi
256
257
}
257
258
258
259
__dnvm_requested_version_or_alias () {
You can’t perform that action at this time.
0 commit comments