From 600599f49ea9dbb6b8d0cea787bfdaf334d98f0a Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Wed, 22 Jan 2014 14:53:40 -0500 Subject: [PATCH] Fix type "LANCH" -> "LAUNCH" --- bin/templates/cordova/lib/device.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/templates/cordova/lib/device.js b/bin/templates/cordova/lib/device.js index a50ac8e2..d37f80c9 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); });