Return-Path: X-Original-To: apmail-cordova-dev-archive@www.apache.org Delivered-To: apmail-cordova-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 448491125C for ; Fri, 18 Jul 2014 14:44:46 +0000 (UTC) Received: (qmail 33080 invoked by uid 500); 18 Jul 2014 14:44:46 -0000 Delivered-To: apmail-cordova-dev-archive@cordova.apache.org Received: (qmail 33054 invoked by uid 500); 18 Jul 2014 14:44:45 -0000 Mailing-List: contact dev-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list dev@cordova.apache.org Received: (qmail 33025 invoked by uid 99); 18 Jul 2014 14:44:45 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jul 2014 14:44:45 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2FDCD94E853; Fri, 18 Jul 2014 14:44:45 +0000 (UTC) From: jkeshavarzi To: dev@cordova.apache.org Reply-To: dev@cordova.apache.org References: In-Reply-To: Subject: [GitHub] cordova-blackberry pull request: Fixed issue: --buildId will disna... Content-Type: text/plain Message-Id: <20140718144445.2FDCD94E853@tyr.zones.apache.org> Date: Fri, 18 Jul 2014 14:44:45 +0000 (UTC) Github user jkeshavarzi commented on a diff in the pull request: https://github.com/apache/cordova-blackberry/pull/169#discussion_r15114473 --- Diff: bin/templates/project/cordova/lib/cmdline.js --- @@ -30,7 +30,8 @@ command .option('-p, --params ', 'Specifies additional parameters to pass to downstream tools.') .option('--appdesc ', 'Optionally specifies the path to the bar descriptor file (bar-descriptor.xml). For internal use only.') .option('-v, --verbose', 'Turn on verbose messages') - .option('-l, --loglevel ', 'set the logging level (error, warn, verbose)'); + .option('-l, --loglevel ', 'set the logging level (error, warn, verbose)') + .option('--signing ', 'if signing the app'); --- End diff -- This really should be just --signing. True/false values is not conventional for command-line arguments. If --signing is specified it automatically becomes set to true/defined. --- 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 infrastructure@apache.org or file a JIRA ticket with INFRA. ---