Skip to content

Commit

Permalink
prettier:write
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitMY committed Jan 22, 2024
1 parent 933df03 commit a0af625
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/with-container/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,13 @@ export async function pullDockerImage(options: NormalizedOptions | Options) {
return;
}
console.warn('Pulling Docker Image ' + options.image);
await spawnBuffered('docker', ['pull', '--platform', 'linux/amd64', options.image], {
debug: options.debug,
}).getResult();
await spawnBuffered(
'docker',
['pull', '--platform', 'linux/amd64', options.image],
{
debug: options.debug,
},
).getResult();
}

export function startDockerContainer(options: NormalizedOptions) {
Expand Down

0 comments on commit a0af625

Please sign in to comment.