From b4512c2a64fa862206e2a6ec8d960e74d8894183 Mon Sep 17 00:00:00 2001 From: slatinsky Date: Mon, 12 Aug 2024 03:20:02 +0200 Subject: [PATCH] github actions - fix windows build v5 --- src/BUILD_RELEASE.bat | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/BUILD_RELEASE.bat b/src/BUILD_RELEASE.bat index e580189..2638dae 100644 --- a/src/BUILD_RELEASE.bat +++ b/src/BUILD_RELEASE.bat @@ -115,4 +115,6 @@ mkdir "..\release\temp\" @REM create exports folder -mkdir "..\release\exports" \ No newline at end of file +if not exist "..\release\exports" ( + mkdir "..\release\exports" +) \ No newline at end of file