Adapted compile-test.bat to new file naming

This commit is contained in:
Christian Köllner 2019-09-12 22:08:00 +02:00
parent a9a5109986
commit d34d3b72a7

View File

@ -1,8 +1,8 @@
@echo off
capnp compile -ocsharp -I%cd% .\capnp\schema.capnp
if %ERRORLEVEL% neq 0 exit /b 1
if exist .\capnp\schema.cs (
del .\capnp\schema.cs
if exist .\capnp\schema.capnp.cs (
del .\capnp\schema.capnp.cs
) else (
exit /b 2
)