From 8ca6d9649316e6683f967ca80e4a3778122acc06 Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Tue, 21 Jan 2025 16:14:07 +0100 Subject: [PATCH] Fix pyinstaller launcher script --- .github/workflows/bundle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bundle.yml b/.github/workflows/bundle.yml index 4b453f6..3e3412e 100644 --- a/.github/workflows/bundle.yml +++ b/.github/workflows/bundle.yml @@ -78,7 +78,7 @@ jobs: - name: Create launcher script # we can't use the setuptools shim (.exe) on Windows run: | - echo "from ccompass.CCMPS import main" > launcher.py + echo "from ccompass.__main__ import main" > launcher.py echo "main()" >> launcher.py - name: Build with PyInstaller