Skip to content

Commit

Permalink
Do not paket install during build
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Oct 28, 2014
1 parent 2193a5a commit 5459111
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 @@ -5,7 +5,7 @@ if errorlevel 1 (
exit /b %errorlevel%
)

.paket\paket.exe install -v
.paket\paket.exe restore
if errorlevel 1 (
exit /b %errorlevel%
)
Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ then
exit $exit_code
fi

.paket/paket.exe install -v
.paket/paket.exe restore
exit_code=$?
if [ $exit_code -ne 0 ]; then
exit $exit_code
Expand All @@ -24,7 +24,7 @@ else
exit $exit_code
fi

mono .paket/paket.exe install -v
mono .paket/paket.exe restore
exit_code=$?
if [ $exit_code -ne 0 ]; then
exit $exit_code
Expand Down

0 comments on commit 5459111

Please sign in to comment.