Github user rcruz commented on a diff in the pull request: https://github.com/apache/cordova-medic/pull/5#discussion_r12743896 --- Diff: build_blackberry10.js --- @@ -0,0 +1,39 @@ +var path = require ('path'), + shell = require('shelljs'), + buildinfo = require('./buildinfo'), + config = require('./config'), + blackberry10 = require('./src/build/makers/blackberry10'), + argv = require('optimist').argv; + +// this assumes that you start it in the sandbox + +var TEST_DIR=process.cwd(); +var BRANCH='master'; +var TOOL_DIR=path.join(TEST_DIR,'medic'); +var MSPEC_DIR=path.join(TEST_DIR,'mobilespec'); + +var TEST_OK=true; + +if(argv.branch) BRANCH=argv.branch; + +var output_location = path.join(MSPEC_DIR); + +buildinfo('BlackBerry', BRANCH, function (error, sha ) { --- End diff -- Is this fine as BlackBerry, or should it be BlackBerry10?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---