You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2013/06/12 19:13:02 UTC

git commit: 2.8.15. Fix for cli shim attaching to results event.

Updated Branches:
  refs/heads/master2 04648ad00 -> 80cb25d85


2.8.15. Fix for cli shim attaching to results event.


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/80cb25d8
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/80cb25d8
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/80cb25d8

Branch: refs/heads/master2
Commit: 80cb25d85c3280239b30dd12971255d9dbd81710
Parents: 04648ad
Author: Fil Maj <ma...@gmail.com>
Authored: Tue Jun 11 10:16:37 2013 -0700
Committer: Fil Maj <ma...@gmail.com>
Committed: Wed Jun 12 10:09:51 2013 -0700

----------------------------------------------------------------------
 bin/cordova  | 2 +-
 package.json | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/80cb25d8/bin/cordova
----------------------------------------------------------------------
diff --git a/bin/cordova b/bin/cordova
index 0cd116d..130f115 100755
--- a/bin/cordova
+++ b/bin/cordova
@@ -23,7 +23,7 @@ process.on('uncaughtException', function(err){
     }
     process.exit(1);
 });
-cordova.on('result', console.log);
+cordova.on('results', console.log);
 if (verbose) {
     cordova.on('log', console.log);
     cordova.on('warn', console.warn);

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/80cb25d8/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 9df54cb..f591658 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova",
-  "version": "2.8.14",
+  "version": "2.8.15",
   "preferGlobal": "true",
   "description": "Cordova command line interface tool",
   "main": "cordova",