Skip to content

Commit

Permalink
Convert filename paths to POSIX format paths
Browse files Browse the repository at this point in the history
Fixes #46
  • Loading branch information
gadenbuie committed Jan 17, 2025
1 parent ceaa149 commit d49dd39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shinylive/_app_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def read_app_files(appdir: Path, destdir: Path) -> list[FileContentJson]:
if rel_dir == ".": # pyright: ignore[reportUnnecessaryComparison]
output_filename = filename
else:
output_filename = str(rel_dir / filename)
output_filename = str((rel_dir / filename).as_posix())

if filename == "shinylive.js":
print(
Expand Down

0 comments on commit d49dd39

Please sign in to comment.