You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by na...@apache.org on 2014/02/03 19:37:35 UTC

[22/33] git commit: Fix type "LANCH" -> "LAUNCH"

Fix type "LANCH" -> "LAUNCH"


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

Branch: refs/heads/master
Commit: 21752000156c68fed83ad6d38e22eb7c29eb7338
Parents: 3070b65
Author: Andrew Grieve <ag...@chromium.org>
Authored: Wed Jan 22 14:53:40 2014 -0500
Committer: Archana Naik <na...@lab126.com>
Committed: Fri Jan 31 15:04:21 2014 -0800

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


http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/blob/21752000/bin/templates/cordova/lib/device.js
----------------------------------------------------------------------
diff --git a/bin/templates/cordova/lib/device.js b/bin/templates/cordova/lib/device.js
index a50ac8e..d37f80c 100644
--- a/bin/templates/cordova/lib/device.js
+++ b/bin/templates/cordova/lib/device.js
@@ -79,7 +79,7 @@ module.exports.install = function(target) {
         var cmd = 'adb -s ' + target + ' shell am start -W -a android.intent.action.MAIN -n ' + launchName;
         return exec(cmd);
     }).then(function() {
-        console.log('LANCH SUCCESS');
+        console.log('LAUNCH SUCCESS');
     }, function(err) {
         return Q.reject('ERROR: Failed to launch application on device: ' + err);
     });