Skip to content

Commit

Permalink
fix: Add absolute path for bin
Browse files Browse the repository at this point in the history
  • Loading branch information
riosje committed Jun 7, 2024
1 parent 186717b commit 15e6500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async function downloadNsolid(metadata) {
"--strip",
"4",
]);
return `${downloadPath}/${toolPath}`;
return toolPath;
}
downloadPath = await tc.downloadTool(metadata.url);
const toolPath = await tc.extractTar(downloadPath, `${extractPath}/${fileName}`, ["xz", "--strip", "1"]);
Expand Down

0 comments on commit 15e6500

Please sign in to comment.