Use strict equalities in make.js, external/* and extensions/*

This commit is contained in:
Tim van der Meij 2014-08-01 22:26:27 +02:00
parent 00eea3ddb9
commit c29faaa22d
4 changed files with 4 additions and 4 deletions

View file

@ -1209,7 +1209,7 @@ target.mozcentralcheck = function() {
echo('Please specify MC_PATH variable');
exit(1);
}
if ((mcPath[0] != '/' && mcPath[0] != '~' && mcPath[1] != ':') ||
if ((mcPath[0] !== '/' && mcPath[0] !== '~' && mcPath[1] !== ':') ||
!test('-d', mcPath)) {
echo('mozilla-central path is not in absolute form or does not exist.');
exit(1);