Add and use getProxyFilename

This commit is contained in:
Michael B. Gale
2026-01-29 15:17:45 +00:00
parent a1c70789a3
commit beb9f533db
3 changed files with 24 additions and 5 deletions
+4 -1
View File
@@ -119806,8 +119806,11 @@ async function cacheProxy(logger, source, filename, version) {
throw new StartProxyError("Failed to add proxy to toolcache" /* CacheFailed */);
}
}
function getProxyFilename() {
return process.platform === "win32" ? `${UPDATEJOB_PROXY}.exe` : UPDATEJOB_PROXY;
}
async function getProxyBinaryPath(logger) {
const proxyFileName = process.platform === "win32" ? `${UPDATEJOB_PROXY}.exe` : UPDATEJOB_PROXY;
const proxyFileName = getProxyFilename();
const proxyInfo = await getDownloadUrl(logger);
let proxyBin = toolcache.find(proxyFileName, proxyInfo.version);
if (!proxyBin) {