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/10/02 20:17:52 UTC

[18/29] git commit: Fix invalid syntax (missing + in multiline string)

Fix invalid syntax (missing + in multiline string)


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/82b77c3b
Tree: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/tree/82b77c3b
Diff: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/diff/82b77c3b

Branch: refs/heads/master
Commit: 82b77c3bad19f6556f00d7103d36b22b4824b726
Parents: 30f9835
Author: Michal Mocny <mm...@gmail.com>
Authored: Fri Sep 12 17:00:29 2014 -0400
Committer: Prabhjot Singh <pr...@amazon.com>
Committed: Wed Sep 17 18:05:35 2014 +0530

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


http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/blob/82b77c3b/bin/templates/cordova/lib/emulator.js
----------------------------------------------------------------------
diff --git a/bin/templates/cordova/lib/emulator.js b/bin/templates/cordova/lib/emulator.js
index 4c3d451..0b9747d 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');
                 }
             });


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