mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-22 20:25:34 +00:00
19 lines
293 B
Batchfile
19 lines
293 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%
|
|
)
|
|
|
|
IF NOT EXIST build.fsx (
|
|
.paket\paket.exe update
|
|
packages\FAKE\tools\FAKE.exe init.fsx
|
|
)
|
|
packages\FAKE\tools\FAKE.exe build.fsx %*
|