mirror of
				https://kkgithub.com/actions/setup-node.git
				synced 2025-10-31 02:11:50 +08:00 
			
		
		
		
	Quote exec parameters
This commit is contained in:
		| @ -21,13 +21,13 @@ async function run() { | ||||
|  | ||||
|     // Output version of node and npm that are being used | ||||
|     const nodePath = await io.which('node'); | ||||
|     const nodeVersion = cp.execSync(`${nodePath} --version`); | ||||
|     const nodeVersion = cp.execSync(`"${nodePath}" --version`); | ||||
|     console.log(`Node Version: ${nodeVersion}`); | ||||
|  | ||||
|     const npmPath = await io.which('npm'); | ||||
|     // Older versions of Node don't include npm | ||||
|     if (npmPath) { | ||||
|       const npmVersion = cp.execSync(`${npmPath} --version`); | ||||
|       const npmVersion = cp.execSync(`"${npmPath}" --version`); | ||||
|       console.log(`npm Version: ${npmVersion}`); | ||||
|     } | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Josh Gross
					Josh Gross