Browse Source

ipc statefile delete by hta

production
pb 2 years ago
parent
commit
4f23b36baf
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      index.js

+ 4
- 1
index.js View File

@@ -4136,7 +4136,10 @@ function generateDependencies(){
var timer = function(){
l('.');
if(fso.FileExists("run.done")) close();
if(fso.FileExists("run.done")) {
fso.DeleteFile('run.done')
close();
}
else window.setTimeout(timer, 1000);
};
window.setTimeout(timer, 3000);

Loading…
Cancel
Save