You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by za...@apache.org on 2014/12/15 14:33:03 UTC

[14/37] cordova-ubuntu git commit: Adb Exec Sync: fixed function call.

Adb Exec Sync: fixed function call.


Project: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/commit/bb6acd7c
Tree: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/tree/bb6acd7c
Diff: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/diff/bb6acd7c

Branch: refs/heads/master
Commit: bb6acd7c8f57bbb3641101ba9567e8b52e43dbac
Parents: 9d82738
Author: Jean-Francois Moy <je...@gmail.com>
Authored: Thu Nov 6 11:39:14 2014 +0000
Committer: Jean-Francois Moy <je...@gmail.com>
Committed: Thu Nov 6 11:39:14 2014 +0000

----------------------------------------------------------------------
 bin/templates/project/cordova/lib/device.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/bb6acd7c/bin/templates/project/cordova/lib/device.js
----------------------------------------------------------------------
diff --git a/bin/templates/project/cordova/lib/device.js b/bin/templates/project/cordova/lib/device.js
index 7ca1c81..f5c6213 100644
--- a/bin/templates/project/cordova/lib/device.js
+++ b/bin/templates/project/cordova/lib/device.js
@@ -60,7 +60,7 @@ module.exports.arch = function (target) {
 
 function adbExec(target, command, options) {
     assert.ok(target && command);
-    return Utils.exec('adb -s ' + target + ' ' + command);
+    return Utils.execSync('adb -s ' + target + ' ' + command);
 }
 
 function adbExecAsync(target, command) {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org