Fix installation of static assets on MacOS and probably Windows too

This commit is contained in:
Miguel Jacq 2018-05-28 16:14:44 +10:00
parent 8658589b2d
commit 41c10b1ea2
No known key found for this signature in database
GPG Key ID: 5418373DFF79BA19

View File

@ -21,7 +21,9 @@ a = Analysis(
('../share/images/*', 'share/images'),
('../share/locale/*', 'share/locale'),
('../share/templates/*', 'share/templates'),
('../share/static/*', 'share/static')
('../share/static/css/*', 'share/static/css'),
('../share/static/img/*', 'share/static/img'),
('../share/static/js/*', 'share/static/js')
],
hiddenimports=[],
hookspath=[],