This commit is contained in:
7cc5c4f330d47060 2024-08-20 06:48:59 -04:00
parent 59737e0406
commit 3daea0e05f
Signed by: 7cc5c4f330d47060
SSH key fingerprint: SHA256:e+4tcZut1nBpe10PqjaO+Rvie0Q7W4qIvFzcUw+7riA
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
@echo off @echo off
:botlaunch :botlaunch
node index.js node index.mjs
if %errorlevel%==1 ( if %errorlevel%==1 (
exit exit
) )

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
while [ true ]; while [ true ];
do node index.js; do node index.mjs;
if [ $? -eq 1 ]; then exit; fi if [ $? -eq 1 ]; then exit; fi
sleep 6; sleep 6;
done done