Skip to content

Commit

Permalink
Magic mode bootstrapper, 5.142.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vbfox authored and Krzysztof-Cieslak committed Feb 25, 2018
1 parent 41c1001 commit 34dfb96
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 20 deletions.
Binary file removed .paket/paket.bootstrapper.exe
Binary file not shown.
7 changes: 1 addition & 6 deletions build.cmd
@@ -1,12 +1,7 @@
@echo off
cls

.paket\paket.bootstrapper.exe
if errorlevel 1 (
exit /b %errorlevel%
)

.paket\paket.exe restore
paket.exe restore
if errorlevel 1 (
exit /b %errorlevel%
)
Expand Down
16 changes: 2 additions & 14 deletions build.sh
Expand Up @@ -3,13 +3,7 @@ if test "$OS" = "Windows_NT"
then
# use .Net

.paket/paket.bootstrapper.exe
exit_code=$?
if [ $exit_code -ne 0 ]; then
exit $exit_code
fi

.paket/paket.exe restore
./paket.exe restore
exit_code=$?
if [ $exit_code -ne 0 ]; then
exit $exit_code
Expand All @@ -18,13 +12,7 @@ then
packages/build/FAKE/tools/FAKE.exe $@ --nocache --fsiargs build.fsx
else
# use mono
mono .paket/paket.bootstrapper.exe
exit_code=$?
if [ $exit_code -ne 0 ]; then
exit $exit_code
fi

mono .paket/paket.exe restore
mono ./paket.exe restore
exit_code=$?
if [ $exit_code -ne 0 ]; then
exit $exit_code
Expand Down
Binary file added paket.exe
Binary file not shown.

0 comments on commit 34dfb96

Please sign in to comment.