From d34d3b72a75731142a16ecf47516f1dff42fdc58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6llner?= Date: Thu, 12 Sep 2019 22:08:00 +0200 Subject: [PATCH] Adapted compile-test.bat to new file naming --- install-test/compile-test.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-test/compile-test.bat b/install-test/compile-test.bat index 2162124..b93a2da 100644 --- a/install-test/compile-test.bat +++ b/install-test/compile-test.bat @@ -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 )