Skip to content

Commit

Permalink
for pyinstaller, add all *.ini data files
Browse files Browse the repository at this point in the history
(avoid error if api_keys.ini is not found)
  • Loading branch information
Satochip committed Jun 30, 2022
1 parent 827305f commit e3c476d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/osx/osx.spec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ hiddenimports += collect_submodules('websocket') # needed?
datas = [
(electrum + PYPKG + '/*.png', PYPKG),
(electrum + PYPKG + '/*.ico', PYPKG),
(electrum + PYPKG + '/api_keys.ini', PYPKG),
(electrum + PYPKG + '/*.ini', PYPKG),
]
datas += collect_data_files('pysatochip')

Expand Down

0 comments on commit e3c476d

Please sign in to comment.