You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2016/03/05 07:49:27 UTC

[04/14] cordova-paramedic git commit: browserify missing argument

browserify missing argument


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

Branch: refs/heads/master
Commit: f18caece0cec097dcfa600c86c3123cd09ea94e7
Parents: 7ed83da
Author: Tomasz Subik <ts...@gmail.com>
Authored: Tue Jun 2 19:36:55 2015 +0200
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Mon Aug 24 11:03:39 2015 -0700

----------------------------------------------------------------------
 paramedic.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/f18caece/paramedic.js
----------------------------------------------------------------------
diff --git a/paramedic.js b/paramedic.js
index 7e623ca..9387a0e 100644
--- a/paramedic.js
+++ b/paramedic.js
@@ -273,7 +273,7 @@ ParamedicRunner.prototype = {
 };
 
 var storedCWD =  null;
-exports.run = function(_platformId,_plugins,_callback,bJustBuild,nPort,msTimeout,bSilent) {
+exports.run = function(_platformId,_plugins,_callback,bJustBuild,nPort,msTimeout,bBrowserify,bSilent,bVerbose) {
 
     storedCWD = storedCWD || process.cwd();
     if(_platformId && _plugins) {
@@ -288,7 +288,7 @@ exports.run = function(_platformId,_plugins,_callback,bJustBuild,nPort,msTimeout
         };
 
         var runner = new ParamedicRunner(_platformId, plugins, callback, !!bJustBuild,
-                                         nPort || PORT, msTimeout || TIMEOUT, !!bSilent);
+                                         nPort || PORT, msTimeout || TIMEOUT, !!bBrowserify, !!bSilent, !!bVerbose);
         runner.storedCWD = storedCWD;
         return runner.run();
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org