mirror of
				https://github.com/actions/setup-node.git
				synced 2025-11-04 13:29:12 +08:00 
			
		
		
		
	dbg
This commit is contained in:
		
							
								
								
									
										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',
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user