Fix type "LANCH" -> "LAUNCH"

This commit is contained in:
Andrew Grieve 2014-01-22 14:53:40 -05:00
parent 1fe7bbbbc4
commit 600599f49e

View File

@ -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);
});