From 842db05488a6cb749ca36fb0cec1ac386b430bec Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Mon, 5 Jun 2023 08:36:55 +0200 Subject: [PATCH] fix spec file for pyinstaller --- smuL-cli.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/smuL-cli.spec b/smuL-cli.spec index 6125ce3..f67732e 100755 --- a/smuL-cli.spec +++ b/smuL-cli.spec @@ -5,7 +5,7 @@ block_cipher = None a = Analysis( - ['SimpleMediaScalerLite-cli.py'], + ['smuL-cli.py'], pathex=[], binaries=[], datas=[], @@ -26,7 +26,7 @@ exe = EXE( a.scripts, [], exclude_binaries=True, - name='SimpleMediaScalerLite-cli', + name='smuL-cli', debug=False, bootloader_ignore_signals=False, strip=False, @@ -46,5 +46,5 @@ coll = COLLECT( strip=False, upx=True, upx_exclude=[], - name='SimpleMediaScalerLite-cli', + name='smuL-cli', )