mirror of
https://github.com/actions/setup-node.git
synced 2025-06-29 14:13:49 +00:00
dbg
This commit is contained in:
parent
8e221092f3
commit
5e7b076d00
2 changed files with 12 additions and 5 deletions
|
@ -74,11 +74,11 @@ export async function getNode(
|
|||
//
|
||||
// Extract
|
||||
//
|
||||
console.log(`Extracting ${downloadPath}`)
|
||||
console.log(`Extracting ${downloadPath}`);
|
||||
if (!fs.existsSync(downloadPath)) {
|
||||
throw new Error('File not downloaded correctly');
|
||||
console.log('File not downloaded correctly');
|
||||
}
|
||||
|
||||
|
||||
let extPath: string;
|
||||
if (osPlat == 'win32') {
|
||||
let _7zPath = path.join(__dirname, '..', 'externals', '7zr.exe');
|
||||
|
@ -90,7 +90,7 @@ export async function getNode(
|
|||
if (fs.existsSync(nestedPath)) {
|
||||
extPath = nestedPath;
|
||||
}
|
||||
|
||||
|
||||
console.log(`using ${extPath}`);
|
||||
} else {
|
||||
extPath = await tc.extractTar(downloadPath, undefined, [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue