Skip to content

Commit

Permalink
Merge pull request #1825 from flexn-io/chore/cherrypick-fix
Browse files Browse the repository at this point in the history
Fix regression for failing to run for the first time
  • Loading branch information
pauliusguzas authored Dec 12, 2024
2 parents aa55747 + b8d6e31 commit d1510fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/projects/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const checkAndUpdateProjectIfRequired = async () => {

if (!platform) return;
const { isMonorepo } = c.buildConfig;
if (isMonorepo) return true;
if (isMonorepo || typeof platform === 'boolean') return true;
await applyTemplate();

const allPlatforms = Object.keys(c.buildConfig?.platforms || {});
Expand Down

0 comments on commit d1510fe

Please sign in to comment.