From 6a77acdbf2c9064318d694c6863c8428f5c8ff08 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Mon, 13 Mar 2017 11:46:51 -0700 Subject: [PATCH] CB-12524: Thwarted by JSHint again, accidentally deleted the wrong message --- bin/lib/check_reqs.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/lib/check_reqs.js b/bin/lib/check_reqs.js index eb1e4d15..93d2906c 100644 --- a/bin/lib/check_reqs.js +++ b/bin/lib/check_reqs.js @@ -272,10 +272,11 @@ module.exports.check_android_target = function(originalError) { // Google Inc.:Google APIs:20 // Google Inc.:Glass Development Kit Preview:20 var valid_target = module.exports.get_target(); + var msg = 'Android SDK not found. Make sure that it is installed. If it is not at the default location, set the ANDROID_HOME environment variable.'; // Changing "targets" to "target" is stupid and makes more code. Thanks Google! - var cmd = "android list targets --compact"; + var cmd = 'android list targets --compact'; if(forgivingWhichSync('avdmanager').length > 0) - cmd = "avdmanager list target --compact"; + cmd = 'avdmanager list target --compact'; return tryCommand(cmd, msg) .then(function(output) { var targets = output.split('\n');