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 BF24210B0E for ; Wed, 22 Jan 2014 14:42:49 +0000 (UTC) Received: (qmail 37516 invoked by uid 500); 22 Jan 2014 14:42:47 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 37316 invoked by uid 500); 22 Jan 2014 14:42:43 -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 37268 invoked by uid 99); 22 Jan 2014 14:42:41 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jan 2014 14:42:41 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2C709818C14; Wed, 22 Jan 2014 14:42:41 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: drkemp@apache.org To: commits@cordova.apache.org Message-Id: <8713d491802e471890773a2160fdcd1f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: fix incorrect path/command Date: Wed, 22 Jan 2014 14:42:41 +0000 (UTC) Updated Branches: refs/heads/master 16dd43e08 -> c92d9c5ec fix incorrect path/command Project: http://git-wip-us.apache.org/repos/asf/cordova-medic/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-medic/commit/c92d9c5e Tree: http://git-wip-us.apache.org/repos/asf/cordova-medic/tree/c92d9c5e Diff: http://git-wip-us.apache.org/repos/asf/cordova-medic/diff/c92d9c5e Branch: refs/heads/master Commit: c92d9c5ec0bd21b03c9e6441dc45dadc18fdd256 Parents: 16dd43e Author: David Kemp Authored: Wed Jan 22 09:42:10 2014 -0500 Committer: David Kemp Committed: Wed Jan 22 09:42:10 2014 -0500 ---------------------------------------------------------------------- src/build/makers/android.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/c92d9c5e/src/build/makers/android.js ---------------------------------------------------------------------- diff --git a/src/build/makers/android.js b/src/build/makers/android.js index 7bef48f..af959f0 100644 --- a/src/build/makers/android.js +++ b/src/build/makers/android.js @@ -34,7 +34,7 @@ module.exports = function(output, sha, devices, entry_point, couchdb_cfg, callba var pkgname= 'mobilespec'; // compile log('Compiling.'); - var ant = 'cd ' + output + ' && '+path.join('.','cordova')+' build --debug'; + var ant = 'cd ' + output + ' && '+path.join('.','cordova','build')+' --debug'; shell.exec(ant, {silent:true,async:true},function(code, compile_output) { log('Compile exit:'+code); if (code > 0) {