mirror of
https://github.com/osmarks/random-stuff
synced 2024-11-08 13:39:53 +00:00
15 lines
214 B
Batchfile
15 lines
214 B
Batchfile
|
@echo off
|
||
|
cls
|
||
|
|
||
|
.paket\paket.bootstrapper.exe
|
||
|
if errorlevel 1 (
|
||
|
exit /b %errorlevel%
|
||
|
)
|
||
|
|
||
|
.paket\paket.exe restore
|
||
|
if errorlevel 1 (
|
||
|
exit /b %errorlevel%
|
||
|
)
|
||
|
|
||
|
packages\FAKE\tools\FAKE.exe build.fsx %*
|