From 08163e08e0798dee8953a2bc975b4a24514b37ae Mon Sep 17 00:00:00 2001 From: merlinz01 <158784988+merlinz01@users.noreply.github.com> Date: Thu, 9 Oct 2025 16:30:57 -0400 Subject: [PATCH] Build dist files --- dist/save-cache/index.js | 4 ++-- dist/setup/index.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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() {