We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3561ebe commit 6aac184Copy full SHA for 6aac184
tasks/win32.js
@@ -49,7 +49,9 @@ module.exports.build = function(done) {
49
};
50
51
module.exports.installer = function(done) {
52
- del([path.join(APP_PATH, 'resources', 'app')], done);
+ setTimeout(function() {
53
+ del([path.join(APP_PATH, 'resources', 'app')], done);
54
+ }, 1000);
55
56
57
module.exports.start = function() {
0 commit comments