From ab26956e91264591c870f1c97d47ca901c95cccc Mon Sep 17 00:00:00 2001 From: Aster Seker Date: Fri, 5 Sep 2025 06:20:31 +0300 Subject: [PATCH] fix(build): add missing newline to Windows build scripts Ensure build scripts end with a newline after the final pause command so shells interpret them correctly. --- build_all.bat | 2 +- build_all_mingw.bat | 2 +- build_lib_mingw.bat | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build_all.bat b/build_all.bat index 1f7e851..28aff7c 100644 --- a/build_all.bat +++ b/build_all.bat @@ -1,3 +1,3 @@ cmake -B build cmake --build build -pause \ No newline at end of file +pause diff --git a/build_all_mingw.bat b/build_all_mingw.bat index d549f20..7d5af12 100644 --- a/build_all_mingw.bat +++ b/build_all_mingw.bat @@ -1,3 +1,3 @@ cmake -G "MinGW Makefiles" -B build cmake --build build -pause \ No newline at end of file +pause diff --git a/build_lib_mingw.bat b/build_lib_mingw.bat index c7d966c..ff0a3db 100644 --- a/build_lib_mingw.bat +++ b/build_lib_mingw.bat @@ -1,3 +1,3 @@ cmake -G "MinGW Makefiles" -B build -DBUILD_EXAMPLE=OFF cmake --build build -pause \ No newline at end of file +pause