Address minor review comments

This commit is contained in:
Michael B. Gale
2026-02-02 17:12:11 +00:00
parent 160e695297
commit 832a783bd4
2 changed files with 18 additions and 11 deletions
+10 -5
View File
@@ -119780,9 +119780,15 @@ function credentialToStr(c) {
}
async function downloadProxy(logger, url, authorization) {
try {
return toolcache.downloadTool(url, void 0, authorization, {
accept: "application/octet-stream"
});
return toolcache.downloadTool(
url,
/* dest: */
void 0,
authorization,
{
accept: "application/octet-stream"
}
);
} catch (error3) {
logger.error(
`Failed to download proxy archive from ${url}: ${getErrorMessage(error3)}`
@@ -119833,8 +119839,7 @@ async function getProxyBinaryPath(logger) {
proxyInfo.version
);
}
proxyBin = path.join(proxyBin, proxyFileName);
return proxyBin;
return path.join(proxyBin, proxyFileName);
}
// src/start-proxy-action.ts