Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DEFE810AE7 for ; Mon, 30 Sep 2013 23:50:05 +0000 (UTC) Received: (qmail 26535 invoked by uid 500); 30 Sep 2013 23:50:05 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 26485 invoked by uid 500); 30 Sep 2013 23:50:05 -0000 Mailing-List: contact commits-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 commits@cordova.apache.org Received: (qmail 26472 invoked by uid 99); 30 Sep 2013 23:50:05 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Sep 2013 23:50:05 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 81B73833CFA; Mon, 30 Sep 2013 23:50:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: timkim@apache.org To: commits@cordova.apache.org Date: Mon, 30 Sep 2013 23:50:06 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] git commit: [CB-4872] - updated paths to version files [CB-4872] - updated paths to version files Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/aa48d735 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/aa48d735 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/aa48d735 Branch: refs/heads/sdkCheck Commit: aa48d735c372be13045be1f77b5125ced321a679 Parents: f240acc Author: Tim Kim Authored: Mon Sep 23 17:32:25 2013 -0700 Committer: Tim Kim Committed: Mon Sep 30 16:49:40 2013 -0700 ---------------------------------------------------------------------- spec/plugins/EnginePluginAndroid/plugin.xml | 2 +- src/util/default-engines.js | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/aa48d735/spec/plugins/EnginePluginAndroid/plugin.xml ---------------------------------------------------------------------- diff --git a/spec/plugins/EnginePluginAndroid/plugin.xml b/spec/plugins/EnginePluginAndroid/plugin.xml index 7ada4ae..dbbb4aa 100644 --- a/spec/plugins/EnginePluginAndroid/plugin.xml +++ b/spec/plugins/EnginePluginAndroid/plugin.xml @@ -26,7 +26,7 @@ - + http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/aa48d735/src/util/default-engines.js ---------------------------------------------------------------------- diff --git a/src/util/default-engines.js b/src/util/default-engines.js index 4fd4a65..21f5feb 100644 --- a/src/util/default-engines.js +++ b/src/util/default-engines.js @@ -22,13 +22,15 @@ module.exports = function(project_dir){ // TODO: these scripts have not been made! 'apple-xcode' : - { 'platform':'ios', 'scriptSrc': path.join(project_dir,'cordova','apple-xcode-version') }, + { 'platform':'ios', 'scriptSrc': path.join(project_dir,'cordova','apple_xcode_version') }, 'apple-ios' : - { 'platform':'ios', 'scriptSrc': path.join(project_dir,'cordova','apple-ios-version') }, + { 'platform':'ios', 'scriptSrc': path.join(project_dir,'cordova','apple_ios_version') }, + 'apple-osx' : + { 'platform':'ios', 'scriptSrc': path.join(project_dir,'cordova','apple_osx_version') }, 'blackberry-webworks' : { 'platform':'blackberry10', 'scriptSrc': path.join(project_dir,'blackberry-webworks-version') }, 'android-sdk' : // will have to parse string output from android list targets - { 'platform':'android', 'scriptSrc': path.join(project_dir,'cordova','android-sdk-version') } + { 'platform':'android', 'scriptSrc': path.join(project_dir,'cordova','android_sdk_version') } } };