ffxiv-config-backup-restore/build.bat

14 lines
288 B
Batchfile
Raw Normal View History

@echo off
REM Install dependencies
echo Installing dependencies...
pip install -r requirements.txt
REM Build executable using PyInstaller
echo.
echo Building executable...
pyinstaller restore_ui.spec
echo.
echo Build complete! Executable located at: dist\FFXIV-Backup-Restore.exe
pause