Executes the packer init and build commands on an image
(image)
| 180 | |
| 181 | |
| 182 | async def execute_async(image): |
| 183 | '''Executes the packer init and build commands on an image''' |
| 184 | i = await init_async(image) |
| 185 | return await build_async(image) if i == 0 else i |
nothing calls this directly
no test coverage detected