From f9b89e98c28393625dc00296ab95a55d953b6ff7 Mon Sep 17 00:00:00 2001 From: Michal Mocny Date: Fri, 12 Sep 2014 17:00:29 -0400 Subject: [PATCH] Fix invalid syntax (missing + in multiline string) --- bin/templates/cordova/lib/emulator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/templates/cordova/lib/emulator.js b/bin/templates/cordova/lib/emulator.js index 4c3d451e..0b9747de 100644 --- a/bin/templates/cordova/lib/emulator.js +++ b/bin/templates/cordova/lib/emulator.js @@ -166,7 +166,7 @@ module.exports.start = function(emulator_ID) { var androidCmd = check_reqs.getAbsoluteAndroidCmd(); return Q.reject('ERROR : No emulator images (avds) found.\n' + '1. Download desired System Image by running: ' + androidCmd + ' sdk\n' + - '2. Create an AVD by running: ' + androidCmd + ' avd\n' + '2. Create an AVD by running: ' + androidCmd + ' avd\n' + 'HINT: For a faster emulator, use an Intel System Image and install the HAXM device driver\n'); } });