Edit setup.js with exit when already exist .env

This commit is contained in:
Adrian Portabales 2016-06-11 13:57:41 +02:00 committed by GitHub
parent e8a1d46408
commit b939715496

View File

@ -219,7 +219,7 @@ if(!fs.existsSync('./\.env')) {
console.log(chalk.green('Have fun using TellForm!'));
}
});
}else{
}else{
console.log(chalk.red('You already have a .env file'));
process.exit(1);
}