botvX_mjs/launch.sh

6 lines
91 B
Bash
Raw Permalink Normal View History

2024-08-12 04:33:43 -04:00
#!/bin/bash
while [ true ];
2024-08-20 06:48:59 -04:00
do node index.mjs;
2024-08-12 04:33:43 -04:00
if [ $? -eq 1 ]; then exit; fi
sleep 6;
done