mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-22 08:50:35 +08:00
Displaying error when regex does not match.
On my ubuntu when `android` is not found typical output is: ``` /bin/sh: 1: android: not found ``` close #104
This commit is contained in:
parent
9300e97d2b
commit
86a2830d75
@ -84,7 +84,7 @@ module.exports.check_android = function() {
|
|||||||
if (stderr.match(/command\snot\sfound/)) {
|
if (stderr.match(/command\snot\sfound/)) {
|
||||||
return Q.reject(new Error('The command \"android\" failed. Make sure you have the latest Android SDK installed, and the \"android\" command (inside the tools/ folder) is added to your path.'));
|
return Q.reject(new Error('The command \"android\" failed. Make sure you have the latest Android SDK installed, and the \"android\" command (inside the tools/ folder) is added to your path.'));
|
||||||
} else {
|
} else {
|
||||||
return Q.reject(new Error('An error occurred while listing Android targets'));
|
return Q.reject(new Error('An error occurred while listing Android targets. Error: ' + stderr ));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user