diff --git a/lib/main.js b/lib/main.js index 46931522..2643c2d2 100644 --- a/lib/main.js +++ b/lib/main.js @@ -67,7 +67,7 @@ function main() { core.exportVariable('AZURE_HTTP_USER_AGENT', userAgentString); core.exportVariable('AZUREPS_HOST_ENVIRONMENT', azurePSHostEnv); azPath = yield io.which("az", true); - core.debug(`az cli version used: ${azPath}`); + core.debug(`az cli path: ${azPath}`); let azureSupportedCloudName = new Set([ "azureusgovernment", "azurechinacloud", diff --git a/src/main.ts b/src/main.ts index adca4be8..7b29de1a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -40,7 +40,7 @@ async function main() { core.exportVariable('AZUREPS_HOST_ENVIRONMENT', azurePSHostEnv); azPath = await io.which("az", true); - core.debug(`az cli version used: ${azPath}`); + core.debug(`az cli path: ${azPath}`); let azureSupportedCloudName = new Set([ "azureusgovernment", "azurechinacloud", @@ -236,4 +236,4 @@ async function jwtParser(federatedToken: string) { let decodedPayload = JSON.parse(bufferObj.toString("utf8")); return [decodedPayload['iss'], decodedPayload['sub']]; } -main(); \ No newline at end of file +main();