Replies: 1 comment
-
Hi @boromyr, I don't know if it's possible, but it occurs to me that maybe integrating a delay from the script itself could work. A possible solution could be to create a .bat file that runs your script with a delay.
timeout /t 5 && your_script_goes_here e.g. timeout /t 5 && node path/to/script.js Or maybe using a library from your script itself.
e.g. setTimeout(run_code(), 5000); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to add a delay for the execution of the scripts? For example, run script1, Sleep 1000, run script2?
Beta Was this translation helpful? Give feedback.
All reactions