forked from dou-jiang/codex-console
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.bat
More file actions
51 lines (45 loc) · 1.43 KB
/
build.bat
File metadata and controls
51 lines (45 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
@echo off
setlocal
setlocal enabledelayedexpansion
echo === Build platform: Windows ===
where python >nul 2>nul
if errorlevel 1 (
echo Python was not found in PATH.
exit /b 1
)
if exist requirements.txt (
echo Installing project dependencies...
python -m pip install -r requirements.txt
if errorlevel 1 (
echo Failed to install project dependencies.
exit /b 1
)
)
echo Installing PyInstaller...
python -m pip install pyinstaller --quiet
if errorlevel 1 (
echo Failed to install PyInstaller.
exit /b 1
)
echo Running PyInstaller...
python -m PyInstaller codex_register.spec --clean --noconfirm
if errorlevel 1 (
echo PyInstaller build failed.
exit /b 1
)
if exist dist\codex-console.exe (
for /f "tokens=*" %%i in ('powershell -Command "[System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture"') do set ARCH=%%i
set OUTPUT=dist\codex-console-windows-!ARCH!.exe
if exist "!OUTPUT!" del /F /Q "!OUTPUT!" >nul 2>nul
move /Y dist\codex-console.exe "!OUTPUT!" >nul
if errorlevel 1 (
echo === Build complete, but final rename was blocked. ===
echo Close any running copy of !OUTPUT! and rename dist\codex-console.exe manually if needed.
echo Fresh binary is available at: dist\codex-console.exe
exit /b 0
)
echo === Build complete: !OUTPUT! ===
) else (
echo === Build failed: dist\codex-console.exe not found ===
exit /b 1
)