Skip to content

Commit

Permalink
Merge pull request #607 from john0isaac/fix-cli-serve-regex
Browse files Browse the repository at this point in the history
fix #606 serve regex
  • Loading branch information
john0isaac committed Feb 19, 2024
2 parents 245c674 + e231090 commit 1c3f925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render_engine/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def serve(
app=app,
module_site=module_site,
patterns=None,
ignore_patterns=[r".*output\\*.+$", r"\.\\\..+$", r".*__.*+$"],
ignore_patterns=[r".*output\\*.+$", r"\.\\\..+$", r".*__.*$"],
)

console = Console()
Expand Down

0 comments on commit 1c3f925

Please sign in to comment.