From 90954096c4791317f3da06c1b9f0adcd51f5499a Mon Sep 17 00:00:00 2001 From: Pedro Gaspar Date: Fri, 27 Mar 2015 04:12:18 +0000 Subject: [PATCH] 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? --- react-native-cli/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-cli/index.js b/react-native-cli/index.js index 92bbcbc0beaaab..5742067f8ba80f 100755 --- a/react-native-cli/index.js +++ b/react-native-cli/index.js @@ -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] );