You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2013/03/04 20:32:51 UTC

[78/91] [abbrv] git commit: hiding git clone messages

hiding git clone messages


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

Branch: refs/heads/master
Commit: d4718cef808ec6d01a6d4f7fc96076d09fee5d4e
Parents: 11eb0c7
Author: Anis Kadri <an...@gmail.com>
Authored: Mon Feb 4 16:12:02 2013 -0800
Committer: Anis Kadri <an...@gmail.com>
Committed: Mon Feb 4 16:12:02 2013 -0800

----------------------------------------------------------------------
 util/plugins.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/d4718cef/util/plugins.js
----------------------------------------------------------------------
diff --git a/util/plugins.js b/util/plugins.js
index e165f55..62548fd 100644
--- a/util/plugins.js
+++ b/util/plugins.js
@@ -57,7 +57,7 @@ exports.clonePluginGitRepo = function(plugin_dir) {
     plugin_git_url = plugin_dir; 
     plugin_dir = path.join(osenv.tmpdir(), 'plugin');
 
-    if(shell.exec('git clone ' + plugin_git_url + ' ' + plugin_dir + ' 2>&1 1>/dev/null').code != 0) {
+    if(shell.exec('git clone ' + plugin_git_url + ' ' + plugin_dir + ' 2>&1 1>/dev/null', {silent: true}).code != 0) {
         throw new Error('failed to get the plugin via git URL', plugin_git_url);
     }