05/23 update codes, add build scripts
LottoSight CI / Syntax Check & Tests (push) Has been cancelled

This commit is contained in:
2026-05-23 18:16:56 -04:00
parent c61c09db94
commit c05867a642
10 changed files with 674 additions and 29 deletions
+16
View File
@@ -0,0 +1,16 @@
@echo off
:: build.bat — double-click or run from cmd to build LottoSight.exe
:: Calls build.ps1 with execution-policy bypass so no PS config is needed.
::
:: Flags are passed through:
:: build.bat -Clean wipe dist\ and build\ first
:: build.bat -SkipDeps skip pip install
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0build.ps1" %*
if %ERRORLEVEL% neq 0 (
echo.
echo Build failed. See errors above.
pause
exit /b 1
)
pause