Skip to content

Commit 8627334

Browse files
committed
better handling of path on Windows runner
1 parent 9c13fec commit 8627334

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ runs:
376376
}
377377
^$'($env.UV_INSTALL_DIR)/uv' ...$uv_args
378378
379-
let version_str = "${{ inputs.version }}"
379+
let version_str = '${{ inputs.version }}'
380380
if ($version_str | is-empty) {
381381
print $"(ansi yellow)Using platform default clang tools \(version not specified)(ansi reset)"
382382
exit 0
@@ -409,7 +409,7 @@ runs:
409409
$tools = $tools | append "clang-format"
410410
}
411411
412-
print $"\n(ansi purple)Ensuring ($tools | str join ' and ') ${{ inputs.version }} are present(ansi reset)"
412+
print $"\n(ansi purple)Ensuring ($tools | str join ' and ') ($version_str) are present(ansi reset)"
413413
for tool in $tools {
414414
print $"Installing ($tool) ($version)"
415415
let cmd = if (

0 commit comments

Comments
 (0)