Skip to content

Commit b476dc0

Browse files
authored
Merge pull request #1823 from flexn-io/fix/template_starter_first_run
Fix regression for failing to run for the first time
2 parents ff8af37 + 46ff90f commit b476dc0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/src/projects/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const checkAndUpdateProjectIfRequired = async () => {
2222

2323
if (!platform) return;
2424
const { isMonorepo } = c.buildConfig;
25-
if (isMonorepo) return true;
25+
if (isMonorepo || typeof platform === 'boolean') return true;
2626
await applyTemplate();
2727

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

0 commit comments

Comments
 (0)