Repository: cordova-lib Updated Branches: refs/heads/master 925009d76 -> 58b37f5bf
CB-6481 (Fix cordova platform check) Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/58b37f5b Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/58b37f5b Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/58b37f5b Branch: refs/heads/master Commit: 58b37f5bf010a62c882ab3acfb23b69a41c1710e Parents: 925009d Author: Josh Soref <[email protected]> Authored: Mon Oct 20 20:51:30 2014 -0400 Committer: Josh Soref <[email protected]> Committed: Mon Oct 20 20:52:29 2014 -0400 ---------------------------------------------------------------------- cordova-lib/src/cordova/platform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/58b37f5b/cordova-lib/src/cordova/platform.js ---------------------------------------------------------------------- diff --git a/cordova-lib/src/cordova/platform.js b/cordova-lib/src/cordova/platform.js index 5875fd9..1a8ab3c 100644 --- a/cordova-lib/src/cordova/platform.js +++ b/cordova-lib/src/cordova/platform.js @@ -203,7 +203,7 @@ function check(hooksRunner, projectRoot) { var result = Q.defer(); cordova.raw.create(scratch) .then(function () { - var h = new hooksRunner(scratch); + var h = new HooksRunner(scratch); // Acquire the version number of each platform we have installed, and output that too. Q.all(platforms_on_fs.map(function(p) { var d = Q.defer(), --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
