From 7ac15e7d457807b02b7a2e0ea52bd0c813b3552e Mon Sep 17 00:00:00 2001 From: marbort <43933996+marbort@users.noreply.github.com> Date: Thu, 17 Oct 2019 12:33:30 +0200 Subject: [PATCH] macOS specfile minor changes Removed unnecessary parenthesis in specfile for macOS that prevented successful building of .app package --- spec_files/macOS/Artemis.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec_files/macOS/Artemis.spec b/spec_files/macOS/Artemis.spec index 6b3f2df..1f28c54 100644 --- a/spec_files/macOS/Artemis.spec +++ b/spec_files/macOS/Artemis.spec @@ -13,7 +13,7 @@ data_file = [ (f, '.') for f in glob.glob(SRC_PATH + '*.[pu][yi]') if f.split('/')[-1] != "artemis.py" ] -data_file.extend(((SRC_PATH + 'cacert.pem', '.'), ((SRC_PATH + 'themes', './themes'))) +data_file.extend(((SRC_PATH + 'cacert.pem', '.'), (SRC_PATH + 'themes', './themes'))) a = Analysis([SRC_PATH + 'artemis.py'], # noqa: 821 pathex=[os.getcwd()],