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 9c13fec commit 8627334Copy full SHA for 8627334
1 file changed
action.yml
@@ -376,7 +376,7 @@ runs:
376
}
377
^$'($env.UV_INSTALL_DIR)/uv' ...$uv_args
378
379
- let version_str = "${{ inputs.version }}"
+ let version_str = '${{ inputs.version }}'
380
if ($version_str | is-empty) {
381
print $"(ansi yellow)Using platform default clang tools \(version not specified)(ansi reset)"
382
exit 0
@@ -409,7 +409,7 @@ runs:
409
$tools = $tools | append "clang-format"
410
411
412
- print $"\n(ansi purple)Ensuring ($tools | str join ' and ') ${{ inputs.version }} are present(ansi reset)"
+ print $"\n(ansi purple)Ensuring ($tools | str join ' and ') ($version_str) are present(ansi reset)"
413
for tool in $tools {
414
print $"Installing ($tool) ($version)"
415
let cmd = if (
0 commit comments