Warn if `init` is called from existing project

This commit is contained in:
Alex Kotliarskyi 2015-05-04 12:17:47 -07:00
Родитель f8a4467b7d
Коммит 4933034334
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -21,6 +21,14 @@ function printUsage() {
process.exit(1);
}
function printInitWarning() {
console.log([
'Looks like React Native project already exists in the current',
'folder. Run this command from a different folder or remove node_modules/react-native'
].join('\n'));
process.exit(1);
}
function run() {
var args = process.argv.slice(2);
if (args.length === 0) {
@ -41,6 +49,9 @@ function run() {
case 'bundle':
bundle.init(args);
break;
case 'init':
printInitWarning();
break;
default:
console.error('Command `%s` unrecognized', args[0]);
printUsage();