Skip to content

Commit

Permalink
Fix packaging of static files
Browse files Browse the repository at this point in the history
  • Loading branch information
mafik committed Jun 5, 2024
1 parent 87aee14 commit e9801ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/embedded.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def gen(embedded_paths):

def hook_srcs(srcs: dict[str, src.File], recipe: make.Recipe):
paths = list(Path('static').glob('**/*'))
paths = list(Path('assets').glob('**/*'))
paths += list(Path('assets').glob('**/*'))
paths.append(Path('gatekeeper.service'))

# retain only files
Expand Down

0 comments on commit e9801ff

Please sign in to comment.