We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c362c3 commit ca39446Copy full SHA for ca39446
python/uv/private/lock.bzl
@@ -73,7 +73,7 @@ def _lock_impl(ctx):
73
74
py_runtime = ctx.toolchains[TARGET_TOOLCHAIN_TYPE].py3_runtime
75
76
- cmd = ctx.actions.declare_file(ctx.label.name)
+ cmd = ctx.actions.declare_file(ctx.label.name + ".exe")
77
ctx.actions.expand_template(
78
template = ctx.files._template[0],
79
substitutions = {
@@ -235,7 +235,7 @@ def _lock_run_impl(ctx):
235
py_runtime.interpreter.short_path,
236
]
237
238
- executable = ctx.actions.declare_file(ctx.label.name)
+ executable = ctx.actions.declare_file(ctx.label.name + ".exe")
239
240
template = info.template,
241
0 commit comments