delay mac sign promises
This commit is contained in:
parent
473757be89
commit
53fe65ddbe
|
@ -108,6 +108,7 @@ function signSafariExt(cb, dir) {
|
||||||
const proc = child.spawn('codesign', args);
|
const proc = child.spawn('codesign', args);
|
||||||
stdOutProc(proc);
|
stdOutProc(proc);
|
||||||
promises.push(new Promise((resolve) => proc.on('close', resolve)));
|
promises.push(new Promise((resolve) => proc.on('close', resolve)));
|
||||||
|
promises.push(new Promise((resolve) => setTimeout(() => resolve(), 10000)));
|
||||||
});
|
});
|
||||||
return Promise.all(promises).then(() => {
|
return Promise.all(promises).then(() => {
|
||||||
return cb;
|
return cb;
|
||||||
|
|
Loading…
Reference in New Issue