From 1d8de1eea1c8866f95135178089b469a4a9a222b Mon Sep 17 00:00:00 2001 From: H1B0B0 Date: Fri, 23 Feb 2024 10:19:13 +0100 Subject: [PATCH] Fix file path in pyinstaller command --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index cbd4431..0d7422a 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -68,7 +68,7 @@ jobs: run: | pyinstaller --noconfirm --onefile --windowed --icon "D:\\a\\Kick-Viewerbot\\Kick-Viewerbot\\src\\R.ico" --name "Kick ViewerBOT" --clean ` --add-data "D:\\a\\Kick-Viewerbot\\Kick-Viewerbot\\src;src/" ` - --add-data "D:\\a\\Kick-Viewerbot\\Kick-Viewerbot\\src\\R.ico" ` + --add-data "D:\\a\\Kick-Viewerbot\\Kick-Viewerbot\\src\\R.ico:R.ico" ` --add-data "${env:pythonLocation}\\Lib\\site-packages\\customtkinter;customtkinter/" ` --add-data "${env:pythonLocation}\\Lib\\site-packages\\streamlink;streamlink/" ` --add-data "${env:pythonLocation}\\Lib\\site-packages\\fake_useragent;fake_useragent/" `