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 be36aeb277
commit 348bf16cef

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=[],