botvX_mjs/launch.sh
2024-08-20 06:48:59 -04:00

6 lines
No EOL
91 B
Bash
Executable file

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