b0b20df36d
Interim commit; there may still be leftover files from the Aurelia tutorial
8 lines
131 B
Batchfile
8 lines
131 B
Batchfile
@echo off
|
|
cls
|
|
.paket\paket.exe restore
|
|
if errorlevel 1 (
|
|
exit /b %errorlevel%
|
|
)
|
|
"packages\FAKE\tools\Fake.exe" build.fsx %1
|
|
pause |