fix: index.js logs

This commit is contained in:
lucas-neynar 2025-03-11 16:28:49 -07:00
parent d264ebf9e0
commit 512c3fa71c
No known key found for this signature in database

View File

@ -34,7 +34,6 @@ async function init() {
console.log(`\nCreating a new Frames v2 app in ${projectPath}`);
// Clone the repository
console.log(`\nCloning the template into ${projectPath}...`);
execSync(`git clone ${REPO_URL} "${projectPath}"`);
// Remove the .git directory
@ -68,9 +67,9 @@ async function init() {
if (fs.existsSync(envExamplePath)) {
fs.copyFileSync(envExamplePath, envPath);
fs.unlinkSync(envExamplePath);
console.log('Created .env file from .env.example');
console.log('\nCreated .env file from .env.example');
} else {
console.log('.env.example does not exist, skipping copy and remove operations');
console.log('\n.env.example does not exist, skipping copy and remove operations');
}
// Update README