fix aria2c dependency in pyinstaller

This commit is contained in:
2025-10-25 21:59:29 +02:00
parent 27f0a3f71d
commit 59e45efbb6
+1 -1
View File
@@ -99,7 +99,7 @@ jobs:
- name: Build executable with PyInstaller (Windows)
if: runner.os == 'Windows'
run: pyinstaller --onefile --windowed --add-data "build_info.json:." --add-data "deps/aria2c.exe" --name ${{ env.APP_NAME }} main.py
run: pyinstaller --onefile --windowed --add-data "build_info.json:." --add-data "deps/aria2c.exe:." --name ${{ env.APP_NAME }} main.py
- name: Build executable with PyInstaller (Unix)
if: runner.os != 'Windows'