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
|
@echo off
|
||||||
:botlaunch
|
:botlaunch
|
||||||
node index.js
|
node index.mjs
|
||||||
if %errorlevel%==1 (
|
if %errorlevel%==1 (
|
||||||
exit
|
exit
|
||||||
)
|
)
|
||||||
|
|
|
@ -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
|
Loading…
Reference in a new issue