mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 09:38:06 +02:00
Convert all node make
instances to gulp
This commit is contained in:
parent
ec1cf28679
commit
b8aaa24257
10 changed files with 13 additions and 13 deletions
6
make.js
6
make.js
|
@ -1357,7 +1357,7 @@ target.mozcentralbaseline = function() {
|
|||
if (test('-d', 'build')) {
|
||||
rm('-rf', 'build');
|
||||
}
|
||||
exec('node make mozcentral');
|
||||
exec('gulp mozcentral');
|
||||
|
||||
cd(ROOT_DIR);
|
||||
mkdir(MOZCENTRAL_BASELINE_DIR);
|
||||
|
@ -1391,7 +1391,7 @@ target.mozcentraldiff = function() {
|
|||
var MOZCENTRAL_BASELINE_DIR = BUILD_DIR + 'mozcentral.baseline';
|
||||
if (!test('-d', MOZCENTRAL_BASELINE_DIR)) {
|
||||
echo('mozcentral baseline was not found');
|
||||
echo('Please build one using "node make mozcentralbaseline"');
|
||||
echo('Please build one using "gulp mozcentralbaseline"');
|
||||
exit(1);
|
||||
}
|
||||
cd(MOZCENTRAL_BASELINE_DIR);
|
||||
|
@ -1432,7 +1432,7 @@ target.mozcentralcheck = function() {
|
|||
var MOZCENTRAL_BASELINE_DIR = BUILD_DIR + 'mozcentral.baseline';
|
||||
if (!test('-d', MOZCENTRAL_BASELINE_DIR)) {
|
||||
echo('mozcentral baseline was not found');
|
||||
echo('Please build one using "node make mozcentralbaseline"');
|
||||
echo('Please build one using "gulp mozcentralbaseline"');
|
||||
exit(1);
|
||||
}
|
||||
cd(MOZCENTRAL_BASELINE_DIR);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue