This commit is contained in:
João Moreno 2020-04-14 13:23:25 +02:00
parent 9267738647
commit 82860b3a83
2 changed files with 1 additions and 1 deletions

View file

@ -4,7 +4,6 @@
*--------------------------------------------------------------------------------------------*/
'use strict';
Object.defineProperty(exports, "__esModule", { value: true });
exports.config = exports.getElectronVersion = void 0;
const fs = require("fs");
const path = require("path");
const vfs = require("vinyl-fs");

View file

@ -25,6 +25,7 @@ function yarnInstall(location, opts) {
console.log(`Installing dependencies in ${location}...`);
console.log(`$ yarn ${args.join(' ')}`);
const result = cp.spawnSync(yarn, args, opts);
if (result.error || result.status !== 0) {
process.exit(1);
}