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:53 UTC

[4/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/6825c2b1
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/6825c2b1
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/6825c2b1

Branch: refs/heads/master
Commit: 6825c2b17b0b1ba23afa05a1611f209393093f92
Parents: ecc6a85
Author: Steven Gill <st...@gmail.com>
Authored: Fri Aug 23 18:47:04 2013 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Fri Aug 23 18:47:04 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/6825c2b1/plugman.js
----------------------------------------------------------------------
diff --git a/plugman.js b/plugman.js
index 439916a..b921f4d 100755
--- a/plugman.js
+++ b/plugman.js
@@ -45,7 +45,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/6825c2b1/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);
             });
         },