mirror of
				https://gitea.com/docker/build-push-action.git
				synced 2025-10-31 09:08:18 +07:00 
			
		
		
		
	Small typo and ensure trimmed output
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									0987321e12
								
							
						
					
					
						commit
						fcaaa5e487
					
				
							
								
								
									
										4
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							| @ -152,7 +152,7 @@ function getVersion() { | |||||||
|             if (res.stderr.length > 0 && res.exitCode != 0) { |             if (res.stderr.length > 0 && res.exitCode != 0) { | ||||||
|                 throw new Error(res.stderr.trim()); |                 throw new Error(res.stderr.trim()); | ||||||
|             } |             } | ||||||
|             return parseVersion(res.stdout); |             return parseVersion(res.stdout.trim()); | ||||||
|         }); |         }); | ||||||
|     }); |     }); | ||||||
| } | } | ||||||
| @ -473,7 +473,7 @@ function run() { | |||||||
|             }) |             }) | ||||||
|                 .then(res => { |                 .then(res => { | ||||||
|                 if (res.stderr.length > 0 && res.exitCode != 0) { |                 if (res.stderr.length > 0 && res.exitCode != 0) { | ||||||
|                     throw new Error(`buildx bake failed with: ${res.stderr.match(/(.*)\s*$/)[0].trim()}`); |                     throw new Error(`buildx failed with: ${res.stderr.match(/(.*)\s*$/)[0].trim()}`); | ||||||
|                 } |                 } | ||||||
|             }); |             }); | ||||||
|             const imageID = yield buildx.getImageID(); |             const imageID = yield buildx.getImageID(); | ||||||
|  | |||||||
| @ -103,7 +103,7 @@ export async function getVersion(): Promise<string> { | |||||||
|       if (res.stderr.length > 0 && res.exitCode != 0) { |       if (res.stderr.length > 0 && res.exitCode != 0) { | ||||||
|         throw new Error(res.stderr.trim()); |         throw new Error(res.stderr.trim()); | ||||||
|       } |       } | ||||||
|       return parseVersion(res.stdout); |       return parseVersion(res.stdout.trim()); | ||||||
|     }); |     }); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -29,7 +29,7 @@ async function run(): Promise<void> { | |||||||
|       }) |       }) | ||||||
|       .then(res => { |       .then(res => { | ||||||
|         if (res.stderr.length > 0 && res.exitCode != 0) { |         if (res.stderr.length > 0 && res.exitCode != 0) { | ||||||
|           throw new Error(`buildx bake failed with: ${res.stderr.match(/(.*)\s*$/)![0].trim()}`); |           throw new Error(`buildx failed with: ${res.stderr.match(/(.*)\s*$/)![0].trim()}`); | ||||||
|         } |         } | ||||||
|       }); |       }); | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user