mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 17:30:09 +02:00
Use strict equalities in make.js, external/* and extensions/*
This commit is contained in:
parent
00eea3ddb9
commit
c29faaa22d
4 changed files with 4 additions and 4 deletions
2
make.js
2
make.js
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue