Object.defineProperty(exports, "__esModule", { value: true }); exports.spawn = void 0; const child_process_1 = require("child_process"); const debug = require("debug"); const helpers_1 = require("./helpers"); const d = debug('electron-notarize:spawn'); const spawn = (cmd, args = [], opts = {}) => { d('spawning cmd:', cmd, 'args:', args.map(arg => ((0, helpers_1.isSecret)(arg) ? '*********' : arg)), 'opts:', opts); const child = (0, child_process_1.spawn)(cmd, args, opts); const out = []; const dataHandler = (data) => out.push(data.toString()); child.stdout.on('data', dataHandler); child.stderr.on('data', dataHandler); return new Promise((resolve, reject) => { child.on('error', err => { reject(err); }); child.on('exit', code => { d(`cmd ${cmd} terminated with code: ${code}`); resolve({ code, output: out.join(''), }); }); }); }; exports.spawn = spawn; //# sourceMappingURL=spawn.js.map