Skip to content

Commit

Permalink
Update packages/docker-build/src/commands/build.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Tommy Chen <[email protected]>
  • Loading branch information
Karol Sójko and tommy351 authored Apr 2, 2023
1 parent 3fec9f9 commit eceab7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docker-build/src/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export default class DockerBuildCommand extends BaseCommand {
);
}

const buildCommand = this.buildKit ? 'buildx build' : 'build';
const buildCommand = this.buildKit ? ['buildx', 'build'] : ['build'];

await execUtils.pipevp(
'docker',
Expand Down

0 comments on commit eceab7e

Please sign in to comment.