Skip to content

Commit

Permalink
fix: 🐛 incorrect pyinstaller web asset paths
Browse files Browse the repository at this point in the history
  • Loading branch information
soul-codes committed Dec 22, 2024
1 parent 387de75 commit afa04f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyinstaller.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ a = Analysis(
*copy_metadata('readchar'),

# static assets for web servers
('./components/web_static', 'components/web_static'),
('./components/web_templates', 'components/web_templates')
('./app/web_static', 'app/web_static'),
('./app/web_templates', 'app/web_templates')
],
hiddenimports=[
'readchar',
Expand Down

0 comments on commit afa04f1

Please sign in to comment.