Updated Branches: refs/heads/master 011f84210 -> 16ef0a057
[BlackBerry10] Fixing a bug with debugtoken generation without prompt Reviewed By: James Keshavarzi <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/commit/16ef0a05 Tree: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/tree/16ef0a05 Diff: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/diff/16ef0a05 Branch: refs/heads/master Commit: 16ef0a057cb5c3689a33e47007f58e7e68e03cc2 Parents: 011f842 Author: Jeffrey Heifetz <[email protected]> Authored: Fri Aug 30 11:06:38 2013 -0400 Committer: Jeffrey Heifetz <[email protected]> Committed: Fri Aug 30 11:09:08 2013 -0400 ---------------------------------------------------------------------- blackberry10/bin/templates/project/cordova/lib/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/16ef0a05/blackberry10/bin/templates/project/cordova/lib/run ---------------------------------------------------------------------- diff --git a/blackberry10/bin/templates/project/cordova/lib/run b/blackberry10/bin/templates/project/cordova/lib/run index 1375859..a2d1b45 100755 --- a/blackberry10/bin/templates/project/cordova/lib/run +++ b/blackberry10/bin/templates/project/cordova/lib/run @@ -255,7 +255,7 @@ function handleDebugToken(deployTarget, allDone) { done(err, result); }); } else { - done(program.keystorepass); + done(null, program.keystorepass); } }, debugTokenHelper.createToken.bind(this, properties, "all")
