From b093d4efff2c09ba378f4407e3074cd2f55ca7aa Mon Sep 17 00:00:00 2001 From: Valentino Orlandi Date: Sun, 30 Jul 2023 15:27:33 +0200 Subject: [PATCH] Fix Fixed WIN build scripts --- scripts/WIN_build_install_1.bat | 4 ++-- scripts/WIN_build_update_1.bat | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/WIN_build_install_1.bat b/scripts/WIN_build_install_1.bat index 704dda8c..0c8809f6 100644 --- a/scripts/WIN_build_install_1.bat +++ b/scripts/WIN_build_install_1.bat @@ -24,7 +24,7 @@ IF EXIST "C:\Program Files\LogDoctor" ( :: Call the builder -IF NOT EXIST "builder.bat" ( +IF NOT EXIST "scripts/builder.bat" ( ECHO: ECHO Error: builder not found cd "%actual_path%" @@ -32,7 +32,7 @@ IF NOT EXIST "builder.bat" ( EXIT /B 1 ) -CALL builder.bat "%actual_path%" +CALL scripts/builder.bat "%actual_path%" IF ERRORLEVEL 1 ( ECHO: ECHO Compilation failed diff --git a/scripts/WIN_build_update_1.bat b/scripts/WIN_build_update_1.bat index 9abf3ba9..65b4e493 100644 --- a/scripts/WIN_build_update_1.bat +++ b/scripts/WIN_build_update_1.bat @@ -24,7 +24,7 @@ IF NOT EXIST "C:\Program Files\LogDoctor" ( :: Call the builder -IF NOT EXIST "builder.bat" ( +IF NOT EXIST "scripts/builder.bat" ( ECHO: ECHO Error: builder not found cd "%actual_path%" @@ -32,7 +32,7 @@ IF NOT EXIST "builder.bat" ( EXIT /B 1 ) -CALL builder.bat "%actual_path%" +CALL scripts/builder.bat "%actual_path%" IF ERRORLEVEL 1 ( ECHO: ECHO Compilation failed