Skip to content

Commit

Permalink
Run make all before compiling base image.
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmorris committed Dec 22, 2023
1 parent 30a561d commit db34c27
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/php-wasm/compile/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,10 @@ if (!requestedVersion || requestedVersion === 'undefined') {
const sourceDir = path.dirname(new URL(import.meta.url).pathname);

// Build the base image
await asyncSpawn('make', ['base-image'], { cwd: sourceDir, stdio: 'inherit' });
await asyncSpawn('make', ['all', 'base-image'], {
cwd: sourceDir,
stdio: 'inherit',
});

await asyncSpawn(
'docker',
Expand Down

0 comments on commit db34c27

Please sign in to comment.