mirror of
https://gitea.com/actions/setup-node.git
synced 2025-08-15 00:06:02 +08:00
win change
This commit is contained in:
@@ -75,7 +75,12 @@ export async function getNode(
|
||||
let extPath: string;
|
||||
if (osPlat == 'win32') {
|
||||
let _7zPath = path.join(__dirname, '..', 'externals', '7zr.exe');
|
||||
extPath = await tc.extract7z(downloadPath, undefined, _7zPath);
|
||||
// 7z extracts to filename folder
|
||||
const srcPath = path.join(
|
||||
downloadPath,
|
||||
`node-v${info.resolvedVersion}-win-${osArch}`
|
||||
);
|
||||
extPath = await tc.extract7z(srcPath, undefined, _7zPath);
|
||||
} else {
|
||||
extPath = await tc.extractTar(downloadPath, undefined, [
|
||||
'xz',
|
||||
|
Reference in New Issue
Block a user