We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e41d2a commit 9598253Copy full SHA for 9598253
2 files changed
build/builtin/browser-main.js
@@ -6,6 +6,7 @@
6
const fs = require('fs');
7
const path = require('path');
8
const os = require('os');
9
+// @ts-ignore review
10
const { remote } = require('electron');
11
const dialog = remote.dialog;
12
build/lib/util.js
@@ -173,7 +173,6 @@ function rimraf(dir) {
173
if (!err) {
174
return cb();
175
}
176
- ;
177
if (err.code === 'ENOTEMPTY' && ++retries < 5) {
178
return setTimeout(function () { return retry(cb); }, 10);
179
0 commit comments