Skip to content

Commit

Permalink
Install latest beta5 dnx in build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
hnrkndrssn committed Jun 10, 2015
1 parent 7954ef6 commit ec1f3d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ echo Installing dnvm

:dnvminstall
echo Installing dnx...
CALL dnvm install 1.0.0-beta5-11911 -u
CALL dnvm install latest -u

echo Restoring...
CALL dnu restore src/JabbR
Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ if ! type dnvm > /dev/null 2>&1; then
curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | sh && source ~/.dnx/dnvm/dnvm.sh
fi
export DNX_UNSTABLE_FEED=https://www.myget.org/F/aspnetrelease/api/v2
dnvm install 1.0.0-beta5-11911 -u
dnvm install latest -u
dnu restore src/JabbR

rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi

dnu publish src/JabbR --no-source --out artifacts/build/jabbr --runtime active 2>&1 | tee buildlog
grep "Build succeeded" buildlog
grep "Build succeeded" buildlog

0 comments on commit ec1f3d6

Please sign in to comment.