mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-12-15 11:07:14 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f731690a1d |
2
dist/setup/index.js
generated
vendored
2
dist/setup/index.js
generated
vendored
@@ -90020,7 +90020,7 @@ function getVersion(uvExecutablePath) {
|
||||
};
|
||||
yield exec.exec(uvExecutablePath, execArgs, options);
|
||||
const parts = output.split(" ");
|
||||
return parts[1];
|
||||
return parts[1].trim();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -67,5 +67,5 @@ async function getVersion(uvExecutablePath: string): Promise<string> {
|
||||
};
|
||||
await exec.exec(uvExecutablePath, execArgs, options);
|
||||
const parts = output.split(" ");
|
||||
return parts[1];
|
||||
return parts[1].trim();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user