Skip to content

Commit ca39446

Browse files
committed
add .exe suffixes to the executable files
1 parent 6c362c3 commit ca39446

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/uv/private/lock.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def _lock_impl(ctx):
7373

7474
py_runtime = ctx.toolchains[TARGET_TOOLCHAIN_TYPE].py3_runtime
7575

76-
cmd = ctx.actions.declare_file(ctx.label.name)
76+
cmd = ctx.actions.declare_file(ctx.label.name + ".exe")
7777
ctx.actions.expand_template(
7878
template = ctx.files._template[0],
7979
substitutions = {
@@ -235,7 +235,7 @@ def _lock_run_impl(ctx):
235235
py_runtime.interpreter.short_path,
236236
]
237237

238-
executable = ctx.actions.declare_file(ctx.label.name)
238+
executable = ctx.actions.declare_file(ctx.label.name + ".exe")
239239
ctx.actions.expand_template(
240240
template = info.template,
241241
substitutions = {

0 commit comments

Comments
 (0)