Skip to content

Commit

Permalink
Remove script exec
Browse files Browse the repository at this point in the history
  • Loading branch information
ProchaLu committed Jan 23, 2025
1 parent dad5d73 commit abc0e43
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions bin/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,20 +363,6 @@ writeFileSync(

console.log('✅ Done updating .gitignore');

if (projectType === 'expo' || projectType === 'expo-postgresql') {
console.log('Running Expo setup script...');
try {
const expoSetupPath = join(
dirname(fileURLToPath(import.meta.url)),
'expo-setup.js',
);
execSync(`node ${expoSetupPath}`, { stdio: 'inherit' });
console.log('✅ Done running Expo setup script');
} catch (error) {
console.error('❌ Failed to run Expo setup script', error);
}
}

// Commented out in case we need to patch Next.js again in the
// future
// ```
Expand Down

0 comments on commit abc0e43

Please sign in to comment.