From fbaad96afc99df5dc1f2221f23c5a01483078d0e Mon Sep 17 00:00:00 2001 From: otavepto <153766569+otavepto@users.noreply.github.com> Date: Sun, 31 Dec 2023 19:52:02 +0200 Subject: [PATCH] check for signing tool --- build_win.bat | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build_win.bat b/build_win.bat index 25346f81..00c9d76e 100644 --- a/build_win.bat +++ b/build_win.bat @@ -218,6 +218,12 @@ if not exist "%deps_dir%\" ( goto :end_script ) +if not exist "%signer_tool%" ( + call :err_msg "signing tool wasn't found" + set /a last_code=1 + goto :end_script +) + if not exist "%protoc_exe_32%" ( call :err_msg "protobuff compiler wasn't found - 32" set /a last_code=1