You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2013/09/13 01:24:56 UTC

[7/8] git commit: removed unncessary console.logs

removed unncessary console.logs


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/5f98a829
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/5f98a829
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/5f98a829

Branch: refs/heads/master
Commit: 5f98a829cd2f1c4306ea1081833d5a3b40c4b8cf
Parents: 5d2cb21
Author: Steven Gill <st...@gmail.com>
Authored: Fri Aug 23 18:47:04 2013 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Thu Sep 12 11:13:07 2013 -0700

----------------------------------------------------------------------
 plugman.js                    | 2 +-
 src/platforms/blackberry10.js | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/5f98a829/plugman.js
----------------------------------------------------------------------
diff --git a/plugman.js b/plugman.js
index e1f7745..625933d 100755
--- a/plugman.js
+++ b/plugman.js
@@ -58,7 +58,7 @@ plugman.commands =  {
     },
     'install'  : function(cli_opts) {
         if(!cli_opts.platform || !cli_opts.project || !cli_opts.plugin) {
-            return //console.log(plugman.help());
+            return console.log(plugman.help());
         }
         var cli_variables = {}
         if (cli_opts.variable) {

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/5f98a829/src/platforms/blackberry10.js
----------------------------------------------------------------------
diff --git a/src/platforms/blackberry10.js b/src/platforms/blackberry10.js
index bb9f2e1..c3d1ce9 100644
--- a/src/platforms/blackberry10.js
+++ b/src/platforms/blackberry10.js
@@ -37,10 +37,8 @@ module.exports = {
         install:function(source_el, plugin_dir, project_dir, plugin_id) {
             var src = source_el.attrib['src'];
             var target = source_el.attrib['target-dir'] || plugin_id;
-            console.log(target);
             TARGETS.forEach(function(arch) {
                 var dest = path.join("native", arch, "chrome", "plugin", target, path.basename(src));
-                console.log(dest);
                 common.copyFile(plugin_dir, src, project_dir, dest);
             });
         },