mirror of
				https://git.mirrors.martin98.com/https://github.com/actions/setup-python
				synced 2025-10-31 16:11:09 +08:00 
			
		
		
		
	Fix path of extracted folder for Python (#118)
* fixed path for pythonExtractedFolder * build on node v12 * updated index.js * removed fileName variable Co-authored-by: Nikita Bykov <v-nibyko@microsoft.com>
This commit is contained in:
		
							parent
							
								
									7010ec794f
								
							
						
					
					
						commit
						0c28554988
					
				
							
								
								
									
										9794
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										9794
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -58,13 +58,12 @@ export async function installCpythonFromRelease(release: tc.IToolRelease) { | ||||
| 
 | ||||
|   core.info(`Download from "${downloadUrl}"`); | ||||
|   const pythonPath = await tc.downloadTool(downloadUrl, undefined, AUTH); | ||||
|   const fileName = path.basename(pythonPath, '.zip'); | ||||
|   core.info('Extract downloaded archive'); | ||||
|   let pythonExtractedFolder; | ||||
|   if (IS_WINDOWS) { | ||||
|     pythonExtractedFolder = await tc.extractZip(pythonPath, `./${fileName}`); | ||||
|     pythonExtractedFolder = await tc.extractZip(pythonPath); | ||||
|   } else { | ||||
|     pythonExtractedFolder = await tc.extractTar(pythonPath, `./${fileName}`); | ||||
|     pythonExtractedFolder = await tc.extractTar(pythonPath); | ||||
|   } | ||||
| 
 | ||||
|   core.info('Execute installation script'); | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Nikita Bykov
						Nikita Bykov