Adds missing space character to CLI error message

Before:
> Command `foo` unrecognized.Did you mean to run this inside a react-native project?

After:
> Command `foo` unrecognized. Did you mean to run this inside a react-native project?
This commit is contained in:
Pedro Gaspar 2015-03-27 04:12:18 +00:00
parent 9c2dbbf997
commit 90954096c4

View File

@ -44,7 +44,7 @@ if (cli) {
}
} else {
console.error(
'Command `%s` unrecognized.' +
'Command `%s` unrecognized. ' +
'Did you mean to run this inside a react-native project?',
args[0]
);