Skip to content

Commit

Permalink
Update src/installer/base.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Jonas Haag <jonas@lophus.org>
  • Loading branch information
AndreasAlbertQC and jonashaag committed May 23, 2022
1 parent 5a62e50 commit 5330fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/installer/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export async function ensureLocalInstaller(
);
if (cacheDirectoryPath !== "") {
core.info(`Found ${installerName} cache at ${cacheDirectoryPath}!`);
executablePath = cacheDirectoryPath + "/" + installerName;
executablePath = path.join([cacheDirectoryPath, installerName]);
core.info(`executablePath is ${executablePath}`);
} else {
core.info(`Did not find ${installerName} ${version} in cache`);
Expand Down

0 comments on commit 5330fe6

Please sign in to comment.