Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
federicocarboni committed Dec 19, 2023
1 parent 5ca96e3 commit 7fb15ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58727,8 +58727,8 @@ async function install(options) {
}
const toolInstallDir = tool_cache.find(options.toolCacheDir, version);
if (toolInstallDir) {
core.info(`Using ffmpeg version ${release.version} from tool cache`);
return {toolInstallDir, version: version};
core.info(`Using ffmpeg version ${version} from tool cache`);
return {toolInstallDir, version};
}
if (!release) release = await getRelease(installer, options);
core.info(`Installing ffmpeg version ${release.version} from ${release.downloadUrl}`);
Expand Down
4 changes: 2 additions & 2 deletions src/dists/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ export async function install(options) {
}
const toolInstallDir = tc.find(options.toolCacheDir, version);
if (toolInstallDir) {
core.info(`Using ffmpeg version ${release.version} from tool cache`);
return {toolInstallDir, version: version};
core.info(`Using ffmpeg version ${version} from tool cache`);
return {toolInstallDir, version};
}
if (!release) release = await getRelease(installer, options);
core.info(`Installing ffmpeg version ${release.version} from ${release.downloadUrl}`);
Expand Down

0 comments on commit 7fb15ff

Please sign in to comment.