Skip to content

Commit afa04f1

Browse files
committed
fix: 🐛 incorrect pyinstaller web asset paths
1 parent 387de75 commit afa04f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyinstaller.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ a = Analysis(
2020
*copy_metadata('readchar'),
2121

2222
# static assets for web servers
23-
('./components/web_static', 'components/web_static'),
24-
('./components/web_templates', 'components/web_templates')
23+
('./app/web_static', 'app/web_static'),
24+
('./app/web_templates', 'app/web_templates')
2525
],
2626
hiddenimports=[
2727
'readchar',

0 commit comments

Comments
 (0)