mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
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
Block a user