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 6CFEA19111 for ; Tue, 5 Apr 2016 15:12:26 +0000 (UTC) Received: (qmail 41199 invoked by uid 500); 5 Apr 2016 15:12:25 -0000 Delivered-To: apmail-cordova-issues-archive@cordova.apache.org Received: (qmail 41135 invoked by uid 500); 5 Apr 2016 15:12:25 -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 40668 invoked by uid 99); 5 Apr 2016 15:12:25 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Apr 2016 15:12:25 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 911F92C1F68 for ; Tue, 5 Apr 2016 15:12:25 +0000 (UTC) Date: Tue, 5 Apr 2016 15:12:25 +0000 (UTC) From: "Vladimir Kotikov (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CB-11019) Cordova ios handles project rename incorrectly MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Vladimir Kotikov created CB-11019: ------------------------------------- Summary: Cordova ios handles project rename incorrectly Key: CB-11019 URL: https://issues.apache.org/jira/browse/CB-11019 Project: Apache Cordova Issue Type: Bug Components: iOS Affects Versions: 4.1.0 Reporter: Vladimir Kotikov Assignee: Vladimir Kotikov Fix For: 4.1.2 When application name is changed in `config.xml`, following call to `prepare` changes the ios project structure within {{platforms/ios}} directory. Though some internal properties of ios platformApi are not changed and still point to old paths. This causes the following `plugn add` call to fail. Notice that the bug can be reproduced only if {{prepare}} and {{plugin add}} bot h called within one node process, i.e. programmatically. Here is a snippet that can help reproduce the problem: {code} var Q = require('q'); var tmp = require('tmp'); var path = require('path'); var shell = require('shelljs'); var events = require('cordova-lib').events; var cordova = require('cordova-lib').cordova; events.on('log', console.log).on('warn', console.warn); var CORDOVA = path.resolve('./node_modules/cordova/bin/cordova'); // This is a repro for issue, similar to CB-10961 but it does repro even with the // fix for CB-10965 (https://issues.apache.org/jira/browse/CB-10965) checked in var case2 = Q(tmp.dirSync().name) .then(function (tempDir) { shell.exec(CORDOVA + ' create ' + tempDir + ' com.app1 app1 -d'); shell.pushd(tempDir); }) .then(function () { return cordova.raw.platform('add', ['d:/cordova/cordova-ios']); }) .then(function () { shell.sed('-i', 'app1', 'app2', 'config.xml'); return cordova.raw.prepare([PLATFORM]); }) .then(function () { return cordova.raw.plugin('add', ['cordova-plugin-camera'], {save: true}); }); {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