Skip to content

Commit

Permalink
Merge pull request #706 from maresb/fix-source-paths
Browse files Browse the repository at this point in the history
Write pixi.toml source file list as posix
  • Loading branch information
maresb authored Sep 16, 2024
2 parents 2f8c5ff + fe23622 commit 2da3c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_lock/export_lock_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def render_pixi_toml(
"For more information, see <https://github.com/conda/conda-lock> "
"and <https://pixi.sh>.",
"Source files:",
*(f"- {src_file}" for src_file in lock_spec.sources),
*(f"- {src_file.as_posix()}" for src_file in lock_spec.sources),
):
pixi_toml.add(comment(line))

Expand Down

0 comments on commit 2da3c4c

Please sign in to comment.