macOS specfile minor changes

Removed unnecessary parenthesis in specfile for macOS that prevented successful building of .app package
This commit is contained in:
marbort
2019-10-17 12:33:30 +02:00
committed by GitHub
parent 71d898c966
commit 7ac15e7d45

View File

@@ -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()],