Skip to content

Commit

Permalink
path separators
Browse files Browse the repository at this point in the history
  • Loading branch information
xansec committed Sep 13, 2024
1 parent b3eb9ea commit 5f5628e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "rules_mayhem",
version = "0.7.2",
version = "0.7.3",
)

bazel_dep(name = "bazel_skylib", version = "1.7.1")
Expand Down
2 changes: 1 addition & 1 deletion mayhem/mayhem.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def _mayhem_run_impl(ctx):
""".format(
owner=ctx.attr.owner + "/" if ctx.attr.owner else "",
mayhem_cli=mayhem_cli_exe.path.replace("/", "\\"),
args=" ".join(['"{}"'.format(arg.replace("/", "\\")) for arg in args_list]),
args=" ".join(['"{}"'.format(arg) for arg in args_list]),
output_file=mayhem_out.path.replace("/", "\\"),
)
else:
Expand Down

0 comments on commit 5f5628e

Please sign in to comment.