Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Aug 7, 2024
1 parent de26f9d commit edfa8f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34588,7 +34588,7 @@ async function Get() {
core.info(`Unity Hub Version:\n > ${hubVersion}`);
const latestHubVersion = await getLatestHubVersion();
if (semver.lt(hubVersion, latestHubVersion)) {
core.info(`Installing Latest Unity Hub Version:\n > ${version}`);
core.info(`Installing Latest Unity Hub Version:\n > ${latestHubVersion}`);
hubPath = await installUnityHub();
}
core.info(`Unity Hub Path:\n > "${hubPath}"`);
Expand Down
2 changes: 1 addition & 1 deletion src/unity-hub.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function Get() {
core.info(`Unity Hub Version:\n > ${hubVersion}`);
const latestHubVersion = await getLatestHubVersion();
if (semver.lt(hubVersion, latestHubVersion)) {
core.info(`Installing Latest Unity Hub Version:\n > ${version}`);
core.info(`Installing Latest Unity Hub Version:\n > ${latestHubVersion}`);
hubPath = await installUnityHub();
}
core.info(`Unity Hub Path:\n > "${hubPath}"`);
Expand Down

0 comments on commit edfa8f6

Please sign in to comment.