Return-Path: X-Original-To: apmail-cordova-issues-archive@minotaur.apache.org Delivered-To: apmail-cordova-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 31D8C18212 for ; Fri, 2 Oct 2015 10:54:27 +0000 (UTC) Received: (qmail 9266 invoked by uid 500); 2 Oct 2015 10:54:27 -0000 Delivered-To: apmail-cordova-issues-archive@cordova.apache.org Received: (qmail 9235 invoked by uid 500); 2 Oct 2015 10:54:27 -0000 Mailing-List: contact issues-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@cordova.apache.org Received: (qmail 9219 invoked by uid 99); 2 Oct 2015 10:54:27 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Oct 2015 10:54:27 +0000 Date: Fri, 2 Oct 2015 10:54:26 +0000 (UTC) From: "Manuel Martiarena (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (CB-9730) Invalid build.json example on the iOS Shell Tool Guide MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CB-9730?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Manuel Martiarena updated CB-9730: ---------------------------------- Attachment: CB-9730.patch Fixed JSON format on docs/de/edge/guide/platforms/ios/tools.md file. Removed unnecessary white spaces also > Invalid build.json example on the iOS Shell Tool Guide > ------------------------------------------------------ > > Key: CB-9730 > URL: https://issues.apache.org/jira/browse/CB-9730 > Project: Apache Cordova > Issue Type: Bug > Components: Docs, iOS > Reporter: jcesarmobile > Assignee: Manuel Martiarena > Attachments: CB-9730.patch > > > on the iOS Shell Tool Guide, on the Signing the App section, the example of the build.json is not a valid JSON > https://cordova.apache.org/docs/en/edge/guide_platforms_ios_tools.md.html#iOS%20Shell%20Tool%20Guide > {code} > { > "ios": { > "debug": { > "codeSignIdentitiy": "iPhone Development", > "provisioningProfile": "926c2bd6-8de9-4c2f-8407-1016d2d12954", > }, > "release": { > "codeSignIdentitiy": "iPhone Distribution" > "provisioningProfile": "70f699ad-faf1-4adE-8fea-9d84738fb306", > } > } > } > {code} > Should be > {code} > { > "ios": { > "debug": { > "codeSignIdentitiy": "iPhone Development", > "provisioningProfile": "926c2bd6-8de9-4c2f-8407-1016d2d12954" > }, > "release": { > "codeSignIdentitiy": "iPhone Distribution", > "provisioningProfile": "70f699ad-faf1-4adE-8fea-9d84738fb306" > } > } > } > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org For additional commands, e-mail: issues-help@cordova.apache.org