From a61896fc1e8a2b226949a0bf13c0733448c096c9 Mon Sep 17 00:00:00 2001 From: merlinz01 <158784988+merlinz01@users.noreply.github.com> Date: Thu, 9 Oct 2025 16:14:25 -0400 Subject: [PATCH] Clarify log messages in getUvPythonDir --- src/utils/inputs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/inputs.ts b/src/utils/inputs.ts index 2d93953..b14a50c 100644 --- a/src/utils/inputs.ts +++ b/src/utils/inputs.ts @@ -132,7 +132,7 @@ export async function getUvPythonDir(): Promise { ); return process.env.UV_PYTHON_INSTALL_DIR; } - core.info("Determining UV_PYTHON_INSTALL_DIR using `uv python dir`..."); + core.info("Determining uv python dir using `uv python dir`..."); const result = await exec.getExecOutput("uv", ["python", "dir"]); if (result.exitCode !== 0) { throw new Error( @@ -140,7 +140,7 @@ export async function getUvPythonDir(): Promise { ); } const dir = result.stdout.trim(); - core.info(`Determined UV_PYTHON_INSTALL_DIR: ${dir}`); + core.info(`Determined uv python dir: ${dir}`); return dir; }