Skip to content

Commit b5b1491

Browse files
committed
back to magic mode
1 parent 804165c commit b5b1491

File tree

5 files changed

+0
-17
lines changed

5 files changed

+0
-17
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ release.sh
179179
localpackages/
180180
paket-files
181181
*.orig
182-
.paket/paket.exe
183182
docs/content/license.md
184183
docs/content/release-notes.md
185184
_NCrunch_Paket
File renamed without changes.
File renamed without changes.

build.cmd

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
@echo off
2-
.paket\paket.bootstrapper.exe
3-
if errorlevel 1 (
4-
exit /b %errorlevel%
5-
)
62

73
.paket\paket.exe restore
84
if errorlevel 1 (

build.sh

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22
if test "$OS" = "Windows_NT"
33
then
44
# use .Net
5-
.paket/paket.bootstrapper.exe
6-
exit_code=$?
7-
if [ $exit_code -ne 0 ]; then
8-
exit $exit_code
9-
fi
10-
115
.paket/paket.exe restore
126
exit_code=$?
137
if [ $exit_code -ne 0 ]; then
@@ -16,12 +10,6 @@ then
1610

1711
packages/build/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build.fsx
1812
else
19-
mono .paket/paket.bootstrapper.exe
20-
exit_code=$?
21-
if [ $exit_code -ne 0 ]; then
22-
exit $exit_code
23-
fi
24-
2513
mono .paket/paket.exe restore
2614
exit_code=$?
2715
if [ $exit_code -ne 0 ]; then

0 commit comments

Comments
 (0)