You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by dr...@apache.org on 2014/01/22 15:42:41 UTC

git commit: fix incorrect path/command

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 <dr...@chromium.org>
Authored: Wed Jan 22 09:42:10 2014 -0500
Committer: David Kemp <dr...@chromium.org>
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) {