Skip to content

Commit 6aac184

Browse files
committed
debugging windows
1 parent 3561ebe commit 6aac184

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tasks/win32.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ module.exports.build = function(done) {
4949
};
5050

5151
module.exports.installer = function(done) {
52-
del([path.join(APP_PATH, 'resources', 'app')], done);
52+
setTimeout(function() {
53+
del([path.join(APP_PATH, 'resources', 'app')], done);
54+
}, 1000);
5355
};
5456

5557
module.exports.start = function() {

0 commit comments

Comments
 (0)