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 5620A198DB for ; Mon, 11 Apr 2016 21:52:26 +0000 (UTC) Received: (qmail 94101 invoked by uid 500); 11 Apr 2016 21:52:26 -0000 Delivered-To: apmail-cordova-issues-archive@cordova.apache.org Received: (qmail 94007 invoked by uid 500); 11 Apr 2016 21:52:26 -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 93150 invoked by uid 99); 11 Apr 2016 21:52:25 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Apr 2016 21:52:25 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id A88722C1F6B for ; Mon, 11 Apr 2016 21:52:25 +0000 (UTC) Date: Mon, 11 Apr 2016 21:52:25 +0000 (UTC) From: "Nikhil Khandelwal (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (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 [ https://issues.apache.org/jira/browse/CB-11019?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nikhil Khandelwal updated CB-11019: ----------------------------------- Labels: ios prepare triaged (was: ios prepare) > 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 > Labels: ios, prepare, triaged > 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 (run {{npm install cordova@6.1.0}} first): > {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} > The snippet above will throw the following error (similar to what described in CB-10961) > {noformat} > Failed to install 'cordova-plugin-camera':Error: ENOENT: no such file or directory, open 'C:\Users\VLADIM~1.KOT\AppData\Local\Temp\tmp-13756pWNNAgPv8e9b\platforms\ios\app1.xcodeproj\project.pbxproj' > at Error (native) > at Object.fs.openSync (fs.js:584:18) > at Object.fs.writeFileSync (fs.js:1224:33) > at Object.cachedProjectFiles.(anonymous function).write (C:\Users\VLADIM~1.KOT\AppData\Local\Temp\tmp-13756pWNNAgPv8e9b\platforms\ios\cordova\lib\projectFile.js:73:16) > at C:\Users\VLADIM~1.KOT\AppData\Local\Temp\tmp-13756pWNNAgPv8e9b\platforms\ios\cordova\lib\plugman\Plugman.js:84:21 > at _fulfilled (C:\Users\VLADIM~1.KOT\AppData\Local\Temp\tmp-13756pWNNAgPv8e9b\platforms\ios\cordova\node_modules\q\q.js:834:54) > at self.promiseDispatch.done (C:\Users\VLADIM~1.KOT\AppData\Local\Temp\tmp-13756pWNNAgPv8e9b\platforms\ios\cordova\node_modules\q\q.js:863:30) > at Promise.promise.promiseDispatch (C:\Users\VLADIM~1.KOT\AppData\Local\Temp\tmp-13756pWNNAgPv8e9b\platforms\ios\cordova\node_modules\q\q.js:796:13) > at C:\Users\VLADIM~1.KOT\AppData\Local\Temp\tmp-13756pWNNAgPv8e9b\platforms\ios\cordova\node_modules\q\q.js:857:14 > at runSingle (C:\Users\VLADIM~1.KOT\AppData\Local\Temp\tmp-13756pWNNAgPv8e9b\platforms\ios\cordova\node_modules\q\q.js:137:13) > {noformat} > even after fix for CB-10965 applied (checked in cordova-common with patch for CB-10965 merged in) -- 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