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 D76671167F for ; Thu, 11 Sep 2014 19:12:25 +0000 (UTC) Received: (qmail 88462 invoked by uid 500); 11 Sep 2014 19:12:25 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 88435 invoked by uid 500); 11 Sep 2014 19:12:25 -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 88426 invoked by uid 99); 11 Sep 2014 19:12:25 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Sep 2014 19:12:25 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 741499BD4CE; Thu, 11 Sep 2014 19:12:25 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ian@apache.org To: commits@cordova.apache.org Message-Id: <0a265a1e01904514ba4caae22912fbd3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: android commit: CB-7512: Copy cordova.gradle file to project root on build Date: Thu, 11 Sep 2014 19:12:25 +0000 (UTC) Repository: cordova-android Updated Branches: refs/heads/master bf13fd48c -> 9ae3d2c07 CB-7512: Copy cordova.gradle file to project root on build Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/9ae3d2c0 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/9ae3d2c0 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/9ae3d2c0 Branch: refs/heads/master Commit: 9ae3d2c074bebd3ce63a453af44c5da27244c21f Parents: bf13fd4 Author: Ian Clelland Authored: Thu Sep 11 15:12:07 2014 -0400 Committer: Ian Clelland Committed: Thu Sep 11 15:12:07 2014 -0400 ---------------------------------------------------------------------- bin/lib/create.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-android/blob/9ae3d2c0/bin/lib/create.js ---------------------------------------------------------------------- diff --git a/bin/lib/create.js b/bin/lib/create.js index 0b79533..c045819 100755 --- a/bin/lib/create.js +++ b/bin/lib/create.js @@ -123,6 +123,7 @@ function copyBuildRules(projectPath) { shell.cp('-f', path.join(srcDir, 'build.gradle'), projectPath); shell.cp('-f', path.join(srcDir, 'settings.gradle'), projectPath); + shell.cp('-f', path.join(srcDir, 'cordova.gradle'), projectPath); } function copyScripts(projectPath) {