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 B50AA11B90 for ; Sun, 22 Jun 2014 17:53:54 +0000 (UTC) Received: (qmail 6816 invoked by uid 500); 22 Jun 2014 17:53:54 -0000 Delivered-To: apmail-cordova-dev-archive@cordova.apache.org Received: (qmail 6771 invoked by uid 500); 22 Jun 2014 17:53:54 -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 6759 invoked by uid 99); 22 Jun 2014 17:53:54 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 22 Jun 2014 17:53:54 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id CA78C886779; Sun, 22 Jun 2014 17:53:53 +0000 (UTC) From: sgrebnov To: dev@cordova.apache.org Reply-To: dev@cordova.apache.org References: In-Reply-To: Subject: [GitHub] cordova-cli pull request: CB-6976 Add support for Windows Universa... Content-Type: text/plain Message-Id: <20140622175353.CA78C886779@tyr.zones.apache.org> Date: Sun, 22 Jun 2014 17:53:53 +0000 (UTC) Github user sgrebnov commented on a diff in the pull request: https://github.com/apache/cordova-cli/pull/181#discussion_r14055705 --- Diff: src/cli.js --- @@ -165,6 +165,20 @@ function cli(inputArgs) { throw new CordovaError(msg) } + // CB-6976 Windows Universal Apps. Allow mixing windows and windows8 aliases + opts.platforms = opts.platforms.map(function(platform) { + // allow using old windows8 alias for new unified windows platform + if (platform == 'windows8' && require('fs').existsSync('platforms/windows')) { --- End diff -- Will be updated, thx @kamrik! --- 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. ---