From 59e45efbb6cba04767a3ca66dd1f04a4dd49d0bf Mon Sep 17 00:00:00 2001 From: KeksNino Date: Sat, 25 Oct 2025 21:59:29 +0200 Subject: [PATCH] fix aria2c dependency in pyinstaller --- .github/workflows/dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 0e73c9f..f888622 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -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'