Skip to content

Commit 9c8d030

Browse files
authored
chore: remove stray space from UV_PYTHON_INSTALL_DIR message (#720)
I was mildly annoyed seeing ``` Post job cleanup. UV_CACHE_DIR is already set to /home/runner/work/_temp/setup-uv-cache UV_PYTHON_INSTALL_DIR is already set to /home/runner/work/_temp/uv-python-dir ``` in my GHA log. 😄 This fixes that to ``` Post job cleanup. UV_CACHE_DIR is already set to /home/runner/work/_temp/setup-uv-cache UV_PYTHON_INSTALL_DIR is already set to /home/runner/work/_temp/uv-python-dir ``` as is good and proper.
1 parent 681c641 commit 9c8d030

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/save-cache/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/inputs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ function getCacheDirFromConfig(): string | undefined {
155155
export function getUvPythonDir(): string {
156156
if (process.env.UV_PYTHON_INSTALL_DIR !== undefined) {
157157
core.info(
158-
`UV_PYTHON_INSTALL_DIR is already set to ${process.env.UV_PYTHON_INSTALL_DIR}`,
158+
`UV_PYTHON_INSTALL_DIR is already set to ${process.env.UV_PYTHON_INSTALL_DIR}`,
159159
);
160160
return process.env.UV_PYTHON_INSTALL_DIR;
161161
}

0 commit comments

Comments
 (0)