From 41c10b1ea29ca94b6f66c4cbc7614c3f541d7dd5 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Mon, 28 May 2018 16:14:44 +1000 Subject: [PATCH] Fix installation of static assets on MacOS and probably Windows too --- install/pyinstaller.spec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install/pyinstaller.spec b/install/pyinstaller.spec index a4f1532a..716eec88 100644 --- a/install/pyinstaller.spec +++ b/install/pyinstaller.spec @@ -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=[],