Skip to content

Commit

Permalink
remove the unnecessary 'var' in runVerbose
Browse files Browse the repository at this point in the history
Summary:
[react-native-cli] Remove the unnecessary 'var' in `runVerbose`, keep pace with `run`.
Closes #9758

Differential Revision: D3821139

Pulled By: javache

fbshipit-source-id: 7651135a91a22d7e07af89fde20da3194ce054c8
  • Loading branch information
dragonwong authored and Facebook Github Bot 3 committed Sep 6, 2016
1 parent a1f31d1 commit f799fa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion react-native-cli/index.js
Expand Up @@ -224,7 +224,7 @@ function run(root, projectName, rnPackage) {

checkNodeVersion();

var cli = require(CLI_MODULE_PATH());
cli = require(CLI_MODULE_PATH());
cli.init(root, projectName);
});
}
Expand Down

0 comments on commit f799fa1

Please sign in to comment.