Skip to content

Commit d1510fe

Browse files
authored
Merge pull request #1825 from flexn-io/chore/cherrypick-fix
Fix regression for failing to run for the first time
2 parents aa55747 + b8d6e31 commit d1510fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)