13 lines
288 B
Batchfile
13 lines
288 B
Batchfile
@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
|