mirror of
https://github.com/actions/setup-node.git
synced 2024-11-10 04:18:24 +08:00
dbg
This commit is contained in:
parent
42746a4f3c
commit
a4145577de
5
dist/index.js
vendored
5
dist/index.js
vendored
|
@ -13015,11 +13015,12 @@ function getNode(versionSpec, stable, token) {
|
|||
let extPath;
|
||||
if (osPlat == 'win32') {
|
||||
let _7zPath = path.join(__dirname, '..', 'externals', '7zr.exe');
|
||||
console.log(`downloadPath: ${downloadPath}`);
|
||||
console.log(`downloadPath: ${downloadPath}`, `isFile: ${fs.statSync(downloadPath).isFile()}`);
|
||||
console.log(JSON.stringify(fs.statSync(downloadPath)));
|
||||
extPath = yield tc.extract7z(downloadPath, undefined, _7zPath);
|
||||
// 7z extracts to folder matching file name
|
||||
extPath = path.join(extPath, path.basename(downloadPath));
|
||||
extPath = path.join(extPath, path.basename(info.fileName, '.7z'));
|
||||
console.log(`extPath: ${extPath}`, `isDirectory: ${fs.statSync(extPath).isDirectory()}`);
|
||||
}
|
||||
else {
|
||||
extPath = yield tc.extractTar(downloadPath, undefined, [
|
||||
|
|
|
@ -77,12 +77,19 @@ export async function getNode(
|
|||
if (osPlat == 'win32') {
|
||||
let _7zPath = path.join(__dirname, '..', 'externals', '7zr.exe');
|
||||
|
||||
console.log(`downloadPath: ${downloadPath}`);
|
||||
console.log(
|
||||
`downloadPath: ${downloadPath}`,
|
||||
`isFile: ${fs.statSync(downloadPath).isFile()}`
|
||||
);
|
||||
console.log(JSON.stringify(fs.statSync(downloadPath)));
|
||||
|
||||
extPath = await tc.extract7z(downloadPath, undefined, _7zPath);
|
||||
// 7z extracts to folder matching file name
|
||||
extPath = path.join(extPath, path.basename(downloadPath));
|
||||
extPath = path.join(extPath, path.basename(info.fileName, '.7z'));
|
||||
console.log(
|
||||
`extPath: ${extPath}`,
|
||||
`isDirectory: ${fs.statSync(extPath).isDirectory()}`
|
||||
);
|
||||
} else {
|
||||
extPath = await tc.extractTar(downloadPath, undefined, [
|
||||
'xz',
|
||||
|
|
Loading…
Reference in New Issue
Block a user