Bugfix
This commit is contained in:
parent
59737e0406
commit
3daea0e05f
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
@echo off
|
||||
:botlaunch
|
||||
node index.js
|
||||
node index.mjs
|
||||
if %errorlevel%==1 (
|
||||
exit
|
||||
)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
while [ true ];
|
||||
do node index.js;
|
||||
do node index.mjs;
|
||||
if [ $? -eq 1 ]; then exit; fi
|
||||
sleep 6;
|
||||
done
|
Loading…
Reference in a new issue