Skip to content

Commit

Permalink
Fix text in skipping download log message
Browse files Browse the repository at this point in the history
Co-authored-by: Fraser Waters <frassle@gmail.com>
  • Loading branch information
ehafenmaier and Frassle authored Feb 4, 2023
1 parent 570b44e commit 1bff1ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/pulumi-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export async function downloadCli(range: string): Promise<void> {
// Check if runner version matches
if (semver.satisfies(runnerVersion, range)) {
// If runner version matches, skip downloading CLI by exiting the function
core.info(`Pulumi version ${runnerVersion} is already installed on this machine. Skipping downloading.`);
core.info(`Pulumi version ${runnerVersion} is already installed on this machine. Skipping download`);
return;
} else {
core.info(`Pulumi ${runnerVersion} does not satisfy the desired version ${range}. Proceeding to download`);
Expand Down

0 comments on commit 1bff1ec

Please sign in to comment.