Skip to content

Commit

Permalink
Merge pull request #1823 from flexn-io/fix/template_starter_first_run
Browse files Browse the repository at this point in the history
Fix regression for failing to run for the first time
  • Loading branch information
Marius456 authored Dec 12, 2024
2 parents ff8af37 + 46ff90f commit b476dc0
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 b476dc0

Please sign in to comment.