From e7291e8e99df9fc3c218f7a10f230d9f3a1afcf9 Mon Sep 17 00:00:00 2001 From: Vxrtrauter <101264710+Vxrtrauter@users.noreply.github.com> Date: Mon, 2 Feb 2026 02:23:22 +0100 Subject: [PATCH] revert workflow changes --- .github/workflows/dev.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index b99b05e..b0c63ab 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -86,7 +86,7 @@ jobs: if: runner.os == 'Windows' shell: bash run: | - pyinstaller --onedir --windowed \ + pyinstaller --onefile --windowed \ --add-data "build_info.json;." \ --add-data "build_info.json;core" \ --add-data "build_info.json;core/interface" \ @@ -106,7 +106,7 @@ jobs: if: runner.os != 'Windows' shell: bash run: | - pyinstaller --onedir --windowed \ + pyinstaller --onefile --windowed \ --add-data "build_info.json:." \ --add-data "build_info.json:core" \ --add-data "build_info.json:core/interface" \