Skip to content

Commit

Permalink
Fix missing statics dir
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsantiago committed Jan 11, 2024
1 parent 34de09b commit 6bc8ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion back/src/whombat/system/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def create_app(settings: Settings) -> FastAPI:
if not user_guide_dir.exists():
user_guide_dir.mkdir(parents=True, exist_ok=True)

statics_dir = user_guide_dir / "statics"
statics_dir = ROOT_DIR / "statics"
if not statics_dir.exists():
statics_dir.mkdir(parents=True, exist_ok=True)

Expand Down

0 comments on commit 6bc8ed5

Please sign in to comment.