mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-12-19 11:04:08 +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);
|
yield exec.exec(uvExecutablePath, execArgs, options);
|
||||||
const parts = output.split(" ");
|
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);
|
await exec.exec(uvExecutablePath, execArgs, options);
|
||||||
const parts = output.split(" ");
|
const parts = output.split(" ");
|
||||||
return parts[1];
|
return parts[1].trim();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user