diff --git a/dist/save-cache/index.js b/dist/save-cache/index.js index 873aedd..0100416 100644 --- a/dist/save-cache/index.js +++ b/dist/save-cache/index.js @@ -91129,13 +91129,13 @@ async function getUvPythonDir() { core.info(`Using UV_PYTHON_INSTALL_DIR from environment: ${process.env.UV_PYTHON_INSTALL_DIR}`); 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(`Failed to get uv python dir: ${result.stderr || result.stdout}`); } const dir = result.stdout.trim(); - core.info(`Determined UV_PYTHON_INSTALL_DIR: ${dir}`); + core.info(`Determined uv python dir: ${dir}`); return dir; } function getCacheDependencyGlob() { diff --git a/dist/setup/index.js b/dist/setup/index.js index 67424dc..299113a 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -129831,13 +129831,13 @@ async function getUvPythonDir() { core.info(`Using UV_PYTHON_INSTALL_DIR from environment: ${process.env.UV_PYTHON_INSTALL_DIR}`); 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(`Failed to get uv python dir: ${result.stderr || result.stdout}`); } const dir = result.stdout.trim(); - core.info(`Determined UV_PYTHON_INSTALL_DIR: ${dir}`); + core.info(`Determined uv python dir: ${dir}`); return dir; } function getCacheDependencyGlob() {