Skip to content

Commit

Permalink
fix tar extract
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Oct 25, 2022
1 parent a0feea5 commit aa4162d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function download(vsn, plat) {
.replace(/PLAT/g, plat)
core.info(`download URL: ${url}`)
const p = await tc.downloadTool(url);
const folder = await tc.extractTar(p, 'plural');
const folder = await tc.extractTar(p);
core.info(`downloaded plural to ${folder}`)
cachedPath = await tc.cacheDir(folder, 'plural', vsn);
await exec.exec(`chmod +x ${cachedPath}/plural`)
Expand Down

0 comments on commit aa4162d

Please sign in to comment.