Get rid of the -B parameter of make because it's been made redundant by make clean.

This commit is contained in:
László Monda
2018-05-09 00:11:33 +02:00
parent 5fc59f40bc
commit 46244b8f5f
2 changed files with 3 additions and 3 deletions

View File

@@ -20,8 +20,8 @@ const deviceSourceFirmwares = package.devices.map(device => `${__dirname}/../${d
const moduleSourceFirmwares = package.modules.map(module => `${__dirname}/../${module.source}`);
rm('-rf', releaseDir, releaseFile, deviceSourceFirmwares, moduleSourceFirmwares);
exec(`cd ${__dirname}/../left; make clean; make -j8 -B`);
exec(`cd ${__dirname}/../right; make clean; make -j8 -B`);
exec(`cd ${__dirname}/../left; make clean; make -j8`);
exec(`cd ${__dirname}/../right; make clean; make -j8`);
for (const device of package.devices) {
const deviceDir = `${releaseDir}/devices/${device.name}`;